/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #f8fafc;
    --foreground: #1e293b;
    --card: #ffffff;
    --border: #e2e8f0;
    --primary: #60a5fa;
    --primary-dark: #3b82f6;
    --muted: #64748b;
    --muted-foreground: #475569;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, var(--slate-50), #ffffff, #eff6ff);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
    min-height: 100vh;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.sheregesh-hero {
    position: relative;
    padding-top: 4rem;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 41, 59, 0.2),
        transparent,
        rgba(255, 255, 255, 1)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--slate-800);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 200;
    color: var(--slate-600);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-button-container {
    padding-top: 2rem;
}

.hero-cta-button {
    position: relative;
    display: inline-block;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.button-glow {
    position: absolute;
    inset: 0;
    background: rgba(96, 165, 250, 0.3);
    filter: blur(1.5rem);
    transform: skewX(-12deg);
    transition: all 0.5s;
}

.hero-cta-button:hover .button-glow {
    filter: blur(2rem);
}

.button-content {
    position: relative;
    padding: 1rem 3rem;
    border: 2px solid var(--slate-300);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    transform: skewX(-12deg);
    transition: all 0.3s;
}

.hero-cta-button:hover .button-content {
    border-color: var(--blue-400);
    transform: skewX(-12deg) scale(1.05);
}

.button-text {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-700);
    transform: skewX(12deg);
}

/* Route Section */
.route-section {
    position: relative;
    padding: 4rem 1.5rem;
}

.route-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.route-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--slate-700);
    line-height: 1.75;
}

.diagonal-line-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(96, 165, 250, 0.5),
        transparent
    );
    transform: translateY(-50%) skewY(-3deg);
}

/* Dates Section */
.dates-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, var(--slate-50));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--slate-800);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.125rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--slate-600);
    margin-bottom: 3rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.date-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    transition: all 0.5s;
    cursor: pointer;
}

.date-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, var(--blue-100), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    transform: rotate(45deg) translateY(-4rem) translateX(4rem);
}

.date-card:hover .card-accent {
    opacity: 1;
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--slate-800);
}

.card-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--slate-600);
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    color: var(--slate-700);
    font-weight: 400;
}

.detail-route {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.detail-price {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blue-500);
}

.price-note {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.card-speed-line {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(96, 165, 250, 0),
        rgba(96, 165, 250, 0.5),
        rgba(96, 165, 250, 0)
    );
    transform: skewX(-12deg);
    opacity: 0;
    transition: opacity 0.5s;
}

.date-card:hover .card-speed-line {
    opacity: 1;
}

/* Accommodation Section */
.accommodation-section {
    position: relative;
    padding: 8rem 1.5rem;
    overflow: hidden;
}

.accommodation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .accommodation-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accommodation-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    transition: all 0.5s;
}

.accommodation-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.accommodation-card-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.accommodation-card-subtitle {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.accommodation-note {
    font-size: 1rem;
    color: var(--slate-500);
    font-style: italic;
}

.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hotel-item {
    padding: 1rem;
    background: var(--slate-50);
    border-left: 3px solid var(--blue-400);
}

.hotel-name {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hotel-type,
.hotel-price,
.hotel-meal,
.hotel-cancel {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.hotel-price {
    font-weight: 500;
    color: var(--blue-500);
}

.accommodation-summary {
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
    font-size: 1rem;
    color: var(--slate-700);
}

.background-diagonal-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
}

.background-diagonal-lines::before,
.background-diagonal-lines::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: var(--slate-300);
    transform: skewX(-12deg);
}

.background-diagonal-lines::before {
    left: 12.5%;
}

.background-diagonal-lines::after {
    left: 25%;
}

/* Budget Section */
.budget-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, var(--slate-50), #ffffff);
}

.budget-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.budget-table-container {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    border-radius: 0.5rem;
}

.budget-table-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-800);
    margin-bottom: 1.5rem;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
}

.budget-table thead {
    border-bottom: 2px solid var(--slate-200);
}

.budget-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 400;
    color: var(--slate-600);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.budget-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-700);
}

.budget-table tbody tr:hover {
    background: var(--slate-50);
}

.budget-table .budget-total {
    background: var(--blue-50);
    font-weight: 500;
}

.budget-table .budget-total td {
    border-bottom: none;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.budget-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .budget-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    border-radius: 0.5rem;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--slate-800);
    margin-bottom: 1rem;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-list li {
    color: var(--slate-600);
    font-size: 0.875rem;
}

.optional-note {
    color: var(--slate-500);
    font-size: 0.75rem;
    font-style: italic;
    margin-left: 0.5rem;
}

.budget-note {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-style: italic;
    margin-bottom: 1rem;
}

.summary-budget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.budget-option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--slate-50);
    border-left: 3px solid var(--blue-400);
}

.budget-option-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-label {
    color: var(--slate-600);
    font-size: 0.875rem;
}

.option-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--blue-500);
}

.option-calculation {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-style: italic;
    margin-top: 0.25rem;
}

/* Slopes Map Section */
.slopes-map-section {
    position: relative;
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, var(--slate-50), #ffffff);
    overflow: hidden;
}

.slopes-map-container {
    max-width: 40rem;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.slopes-map-container:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.slopes-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.25rem;
    transition: transform 0.5s ease;
}

.slopes-map-container:hover .slopes-map-image {
    transform: scale(1.02);
}

/* Ski Passes Section */
.ski-passes-section {
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, var(--slate-50));
}

.ski-passes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ski-passes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ski-pass-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    padding: 2rem;
    transition: all 0.5s;
}

.ski-pass-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ski-pass-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ski-pass-color {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.ski-pass-blue {
    background: #3b82f6;
}

.ski-pass-green {
    background: #10b981;
}

.ski-pass-red {
    background: #ef4444;
}

.ski-pass-yellow {
    background: #f59e0b;
}

.ski-pass-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-800);
}

.ski-pass-description {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.ski-pass-note {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 1rem;
}

.ski-pass-table {
    width: 100%;
    border-collapse: collapse;
}

.ski-pass-table tr {
    border-bottom: 1px solid var(--slate-100);
}

.ski-pass-table td {
    padding: 0.75rem 0;
    color: var(--slate-700);
    font-size: 0.875rem;
}

.ski-pass-table td:first-child {
    color: var(--slate-600);
}

.ski-pass-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--blue-500);
}

/* Entertainment Section */
.entertainment-section {
    position: relative;
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, var(--slate-50), #ffffff);
    overflow: hidden;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .entertainment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .entertainment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.entertainment-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.entertainment-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.entertainment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--slate-200), var(--slate-300));
    display: flex;
    align-items: center;
    justify-content: center;
}

.entertainment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, var(--slate-200), var(--slate-300));
}

.entertainment-img:not([src]),
.entertainment-img[src=""] {
    opacity: 0;
}

.entertainment-card:hover .entertainment-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
    opacity: 0.3;
    transition: opacity 0.5s;
}

.entertainment-card:hover .image-overlay {
    opacity: 0.5;
}

.entertainment-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.entertainment-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-800);
    margin: 0;
}

.entertainment-description {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
    flex: 1;
}

.entertainment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 9999px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s;
}

.entertainment-card:hover .tag {
    background: var(--blue-50);
    color: var(--blue-600);
    border-color: var(--blue-200);
}

/* Gallery Section */
.gallery-section {
    position: relative;
    padding: 8rem 1.5rem;
    background: linear-gradient(to bottom, var(--slate-50), #ffffff);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    cursor: pointer;
    transition: all 0.5s;
    background: var(--slate-200);
}

.gallery-item:hover {
    border-color: var(--blue-400);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Closing Section */
.closing-section {
    position: relative;
    padding: 8rem 1.5rem;
}

.closing-section .container {
    max-width: 64rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.closing-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-700);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .closing-text {
        font-size: 1.875rem;
    }
}

.closing-diagonal-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
}

.closing-diagonal-lines::before,
.closing-diagonal-lines::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--slate-400),
        transparent
    );
    transform: skewX(-12deg);
}

.closing-diagonal-lines::before {
    left: 20%;
}

.closing-diagonal-lines::after {
    left: 40%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .budget-table-container {
        overflow-x: auto;
    }
    
    .budget-table {
        font-size: 0.75rem;
        min-width: 600px;
    }
    
    .budget-table th,
    .budget-table td {
        padding: 0.5rem;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .accommodation-content {
        grid-template-columns: 1fr;
    }
    
    .ski-passes-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-summary {
        grid-template-columns: 1fr;
    }
    
    .entertainment-grid {
        grid-template-columns: 1fr;
    }
    
    .entertainment-image {
        height: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slopes-map-container {
        padding: 1rem;
    }
}

