/* ===================================
   CSS Reset & Variables
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a3a;
    --secondary-color: #8b7355;
    --accent-gold: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f7f4;
    --bg-cream: #faf9f6;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--secondary-color);
}

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

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-hero,
.btn-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-hero {
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-hero:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.3rem 3.5rem;
    font-size: 1.05rem;
    border: 2px solid var(--white);
}

.btn-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 100%);
    background-image:
        linear-gradient(rgba(26, 58, 58, 0.7), rgba(26, 58, 58, 0.7)),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

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

/* ===================================
   Introduction Section
   =================================== */
.intro-section {
    background: var(--bg-cream);
    padding: 8rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.intro-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    transform: translateY(0);
    transition: var(--transition);
}

.intro-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px var(--shadow-heavy);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

/* ===================================
   Section Titles
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

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

.section-title-alt {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===================================
   Cottages Section
   =================================== */
.cottages-section {
    background: var(--white);
    padding: 8rem 0;
}

.cottages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.cottage-card {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 3rem 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.cottage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cottage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.cottage-card:hover::before {
    transform: scaleX(1);
}

.cottage-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cottage-image-container {
    margin: 5rem 0 3rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    max-height: 600px;
}

.cottage-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-features {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a5a 100%);
    padding: 8rem 0;
    color: var(--white);
}

.why-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.why-item h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.why-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.highlight-text {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent-gold);
    margin-top: 1.5rem;
    font-style: italic;
    border-radius: 2px;
}

/* ===================================
   Location Section
   =================================== */
.location-section {
    background: var(--bg-cream);
    padding: 8rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-top-color: var(--accent-gold);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.location-image {
    margin: 4rem 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 70px var(--shadow-medium);
    max-height: 550px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    margin-top: 4rem;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   Activities Section
   =================================== */
.activities-section {
    background: var(--white);
    padding: 8rem 0;
}

.activities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.activity-box {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.activity-box:hover {
    border-left-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: 0 15px 40px var(--shadow);
}

.activity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.activity-box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.activity-image {
    margin-top: 4rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 70px var(--shadow-medium);
    max-height: 550px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Heritage Section
   =================================== */
.heritage-section {
    background: var(--bg-cream);
    padding: 8rem 0;
}

.heritage-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.heritage-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
}

.heritage-box.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    border: 2px solid var(--accent-gold);
}

.heritage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.heritage-box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
}

.note {
    background: rgba(139, 115, 85, 0.1);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--secondary-color);
    margin-top: 1rem;
    font-size: 0.95rem;
    border-radius: 2px;
}

.heritage-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-style: italic;
    font-size: 1.05rem;
}

/* ===================================
   Tips Section
   =================================== */
.tips-section {
    background: var(--white);
    padding: 8rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tip-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.tip-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.tip-card.highlight {
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    border: 2px solid var(--accent-gold);
}

/* ===================================
   Travel Section
   =================================== */
.travel-section {
    background: var(--bg-cream);
    padding: 8rem 0;
}

.travel-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.travel-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.travel-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-top-color: var(--accent-gold);
}

.travel-box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

/* ===================================
   Combine Section
   =================================== */
.combine-section {
    background: linear-gradient(135deg, #8b7355 0%, #a88968 100%);
    padding: 8rem 0;
}

.combine-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.combine-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.combine-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ===================================
   Insider Section
   =================================== */
.insider-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a5a 100%);
    padding: 8rem 0;
    color: var(--white);
}

.insider-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

.insider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.insider-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.insider-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.insider-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
}

.insider-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 100%);
    padding: 8rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.cta-content p {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p,
.footer-col ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Hamburger Menu
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    .cottages-section,
    .why-section,
    .location-section,
    .activities-section,
    .heritage-section,
    .tips-section,
    .travel-section,
    .combine-section,
    .insider-section,
    .cta-section {
        padding: 5rem 0;
    }
}

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

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 25px var(--shadow-heavy);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .nav-menu a.btn-primary {
        text-align: center;
        padding: 1rem 2rem;
        margin-top: 1rem;
    }

    .hero {
        height: 80vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .cottages-grid,
    .location-grid,
    .activities-content,
    .heritage-boxes,
    .tips-grid,
    .travel-content,
    .insider-grid {
        grid-template-columns: 1fr;
    }
}