/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2c2c2c;
    line-height: 1.7;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero Section & Slideshow ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 50px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .logo {
    color: #1a1a1a;
}

.navbar.scrolled .nav-links a {
    color: #555;
}

.navbar.scrolled .nav-links a:hover {
    color: #1a1a1a;
}

.navbar.scrolled .hamburger span {
    background: #1a1a1a;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a96e;
    transition: width 0.4s ease;
}

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

.nav-links a:hover {
    color: #fff;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #c9a96e;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-location {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 35px;
    z-index: 2;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator.active {
    background: #fff;
    width: 50px;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.divider {
    width: 40px;
    height: 1px;
    background: #c9a96e;
    margin: 0 auto 60px;
}

/* ===== About Section ===== */
.about {
    background: #fff;
}

.about-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    color: #666;
    line-height: 2;
    font-weight: 300;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.highlight-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    border-color: #c9a96e;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.highlight-icon {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #c9a96e;
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
}

.highlight-card p {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
}

/* Booking.com award badge */
.booking-badge {
    margin-top: 55px;
    display: flex;
    justify-content: center;
}

.booking-badge-inner {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.booking-badge-left {
    flex: 1;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.booking-awarded {
    font-size: 0.85rem;
    color: #555;
    font-weight: 300;
}

.booking-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003580;
    font-family: 'Lato', sans-serif;
    line-height: 1.2;
}

.booking-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-logo {
    font-size: 1rem;
    font-weight: 700;
    color: #003580;
    font-family: 'Lato', sans-serif;
}

.booking-award-title {
    font-size: 0.78rem;
    color: #555;
    font-weight: 300;
}

.booking-badge-score {
    background: #003580;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    border-radius: 0 6px 6px 0;
    min-width: 110px;
    gap: 4px;
}

.booking-score {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Lato', sans-serif;
}

.booking-outof {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.85;
}

/* ===== Apartments Section ===== */
.apartments {
    background: #f8f7f5;
}

.apartment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.apartment-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.apartment-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.apartment-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e8e6e2;
    position: relative;
}

/* Apartment manual slider */
.apt-slider {
    height: 280px;
    position: relative;
    background-color: #e8e6e2;
    overflow: hidden;
}

.apt-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.apt-slide.active {
    opacity: 1;
}

.apt-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.apt-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    font-size: 1.8rem;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px;
    transition: background 0.3s ease;
}

.apt-slider-btn:hover {
    background: rgba(201, 169, 110, 0.85);
}

.apt-slider-prev {
    left: 12px;
}

.apt-slider-next {
    right: 12px;
}

.apt-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.apt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.apt-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.apartment-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.apartment-info {
    padding: 35px;
}

.apartment-stars {
    color: #c9a96e;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.apartment-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 1px;
}

.apartment-size {
    color: #c9a96e;
    font-weight: 400;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.apartment-features {
    list-style: none;
}

.apartment-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.apartment-features li:last-child {
    border-bottom: none;
}

.apartment-features li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: #c9a96e;
}

/* ===== Amenities Section ===== */
.amenities {
    background: #fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amenity-item {
    text-align: center;
    padding: 45px 25px;
    border: 1px solid #f0efed;
    transition: all 0.4s ease;
}

.amenity-item:hover {
    border-color: #c9a96e;
}

.amenity-icon {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: #c9a96e;
}

.amenity-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.amenity-item p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== Location Section ===== */
.location {
    background: #f8f7f5;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 25px;
    background: #fff;
    border-left: 2px solid #c9a96e;
}

.location-distance {
    min-width: 95px;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.location-place {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

/* ===== Contact Section ===== */
.contact {
    background: #1a1a1a;
    color: #fff;
}

.contact .section-title {
    color: #fff;
}

.contact .divider {
    background: #c9a96e;
}

.contact-intro {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 50px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.9;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 45px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease;
}

.contact-card:hover {
    border-color: #c9a96e;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #c9a96e;
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-card a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #c9a96e;
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== Footer ===== */
.footer {
    background: #111;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 35px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-copy {
    margin-top: 8px;
    font-size: 0.75rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: 5px;
    }

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

    .apartment-cards {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

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

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

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.7);
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .hero-location {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }

    .highlights {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .navbar {
        padding: 18px 25px;
    }

    .navbar.scrolled {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 35px;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}
