/* Variables */
:root {
    --color-light: #FEFDFI;
    --color-gold: #A38D72;
    --color-dark: #2A4336;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'FoglihtenNo06', serif;
}

/* Font Face for FoglihtenNo06 */
@font-face {
    font-family: 'FoglihtenNo06';
    src: url('fonts/FoglihtenNo06_076.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 241, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
    background: rgba(254, 253, 241, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--color-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(42, 67, 54, 0.6), rgba(163, 141, 114, 0.4)),
                url('loc1/2026-02-02 01.06.21.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 0rem;
    color: white;
    letter-spacing: 1px;
    background: rgba(163, 141, 114, 0.9);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-outline {
    background: var(--color-gold);
    color: white;
    border: none;
    box-shadow: 0 10px 40px rgba(163, 141, 114, 0.4);
}

.btn-outline:hover {
    background: #8f7a5f;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(163, 141, 114, 0.6);
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 10px 40px rgba(163, 141, 114, 0.4);
}

.btn-primary:hover {
    background: #8f7a5f;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(163, 141, 114, 0.6);
}

/* About Section */
.about {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--color-light) 0%, #f8f7f0 100%);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-dark);
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-gold);
}

.about-text {
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
}

/* Locations Section */
.locations {
    padding: 120px 0;
    background: #f8f7f0;
}

.locations .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.location-gallery {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery-main {
    height: 100%;
    position: relative;
}

.gallery-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.location-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--color-gold);
    color: white;
    transform: scale(1.1);
}

.location-info {
    padding: 40px;
}

.location-title {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.location-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #666;
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #f5f3e8 100%);
}

.booking .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 5px 20px rgba(163, 141, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Location Select */
.location-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.location-option {
    position: relative;
    cursor: pointer;
}

.location-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.location-option-content {
    display: block;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s;
}

.location-option input[type="radio"]:checked + .location-option-content {
    border-color: var(--color-gold);
    background: rgba(163, 141, 114, 0.1);
}

.location-option:hover .location-option-content {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-option-name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.location-option-desc {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.location-option--soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.location-option--soon .location-option-content {
    background: #f5f5f5;
}

.location-option--soon:hover .location-option-content {
    transform: none;
    box-shadow: none;
    border-color: #e5e5e5;
}

.soon-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--color-gold);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.location-gallery--soon {
    background: #f5f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon-placeholder {
    text-align: center;
    color: #999;
}

.soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.soon-placeholder p {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slots-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    grid-column: 1 / -1;
}

.time-slot {
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.time-slot:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: white;
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Duration Select */
.duration-select {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.duration-option {
    position: relative;
    cursor: pointer;
}

.duration-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.duration-option span {
    display: block;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.duration-option input[type="radio"]:checked + span {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: white;
}

.duration-option:hover span {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--color-dark);
    color: white;
}

.contact .section-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.contact .section-title::after {
    background: var(--color-gold);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
    text-align: center;
}

.contact-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-item a:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.directions-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--color-gold) !important;
    border-bottom: 2px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s !important;
}

.directions-btn:hover {
    background: var(--color-gold);
    color: #1a2e24 !important;
    border-bottom-color: var(--color-gold) !important;
}

/* Footer */
.footer {
    background: #1a2e24;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 40px 0;
}

/* Notification */
.notification {
    position: fixed;
    top: 120px;
    right: 30px;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 450px;
    font-weight: 500;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left: 5px solid #4caf50;
}

.notification.error {
    border-left: 5px solid #f44336;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--color-light);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 100px 0;
        gap: 2rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-location {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .location-gallery {
        height: 400px;
    }

    .location-info {
        padding: 30px;
    }

    .location-title {
        font-size: 1.8rem;
    }

    .booking-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-select {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .duration-select {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        padding: 80px 0;
    }

    .locations,
    .booking,
    .contact {
        padding: 80px 0;
    }

    .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .gallery-prev,
    .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-gallery {
        height: 300px;
    }

    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .duration-select {
        grid-template-columns: 1fr;
    }
}
