/* Base Styles */
:root {
    --primary-color: #604c3a;
    --secondary-color: #8e7c63;
    --accent-color: #d6ad60;
    --text-color: #333333;
    --light-color: #f9f7f3;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary-color);
}

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

ul {
    list-style-position: inside;
    margin: 1rem 0;
}

li {
    margin-bottom: 0.7rem;
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('Thomas_and_Hannah02.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-script);
    font-size: 5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.accent-line {
    height: 2px;
    width: 100px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* Introduction */
.introduction {
    background-color: white;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.couple-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.couple-image:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.greeting {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.signature {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

/* Experience Overview */
.experience-overview {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.experience-overview .section-heading h2 {
    color: white;
}

.experience-overview .accent-line {
    background-color: white;
}

.highlight-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Sections */
.feature-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-box.left {
    flex-direction: row;
}

.feature-box.right {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 300px;
}

.feature-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-content {
    flex: 1;
    min-width: 300px;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-content h3 i {
    color: var(--accent-color);
}

.feature-accent-line {
    height: 2px;
    width: 60px;
    background-color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Wildlife Experience */
.wildlife-experience {
    background-color: white;
}

/* Dining Experience */
.dining-experience {
    background-color: var(--light-color);
}

/* Accommodation */
.accommodation {
    background-color: white;
}

/* Evening Activities */
.evening-activities {
    background-color: var(--light-color);
}

/* Gallery */
.gallery {
    background-color: white;
    padding-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

/* Final Note */
.final-note {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.note-content {
    max-width: 700px;
    margin: 0 auto;
}

.note-content h3 {
    font-family: var(--font-script);
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.location {
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .feature-box.left, 
    .feature-box.right {
        flex-direction: column;
    }
    
    .feature-image, 
    .feature-content {
        width: 100%;
    }

    .highlight-text {
        font-size: 1.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
    
    .couple-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    .container {
        width: 90%;
    }
}