/**
 * Indian Lake Ranch Wedding Venue Stylesheet
 * Color Scheme: Green/Gold - #2c5f4f, #4a8070, #f0e6d2
 */

/* ===== CSS Variables ===== */
:root {
    --primary-green: #2c5f4f;
    --secondary-green: #4a8070;
    --accent-gold: #f0e6d2;
    --accent-gold-dark: #d8c8a8;
    --cream: #f5f5f0;
    --cream-dark: #e8e4da;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-dark: rgba(0,0,0,0.2);
    --gradient-green: linear-gradient(135deg, #2c5f4f 0%, #4a8070 100%);
    --gradient-gold: linear-gradient(135deg, #f0e6d2 0%, #d8c8a8 100%);
    --gradient-cream: linear-gradient(135deg, #f5f5f0 0%, #e8e4da 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background: var(--gradient-cream);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-medium);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo {
    font-size: 1.4em;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.navbar-logo span {
    font-weight: bold;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.navbar-menu a {
    color: var(--accent-gold);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95em;
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    background: rgba(255,255,255,0.15);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

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

/* ===== Main Layout ===== */
main {
    padding-top: 70px;
    min-height: 100vh;
}

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

/* ===== Header/Hero Section ===== */
.hero {
    background: var(--gradient-green);
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cpath d='M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-size: 2em;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero .tagline {
    font-size: 1.2em;
    color: var(--accent-gold);
    font-weight: 300;
    opacity: 0.9;
}

.rating {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.rating .stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-right: 10px;
}

/* ===== Section Styles ===== */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2em;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: linear-gradient(135deg, #f8f6f0 0%, var(--cream-dark) 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-green);
}

.highlight-box h3 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===== Grids ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.card h4 {
    font-size: 1.5em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Accommodation Cards */
.accommodation-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.accommodation-card h4 {
    font-size: 1.6em;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.accommodation-card .capacity {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.accommodation-card .highlight {
    color: var(--secondary-green);
    font-style: italic;
    margin-top: 10px;
}

/* ===== Features ===== */
.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f8f5;
    border-radius: 10px;
    transition: background 0.3s;
}

.feature-item:hover {
    background: var(--accent-gold);
}

.feature-icon {
    font-size: 2em;
    margin-right: 15px;
    color: var(--secondary-green);
}

.feature-text {
    flex: 1;
}

.feature-text h5 {
    font-size: 1.2em;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* ===== Amenities ===== */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.amenity-tag {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-size: 0.95em;
    transition: transform 0.3s;
}

.amenity-tag:hover {
    transform: scale(1.05);
    background: var(--secondary-green);
}

/* ===== Activities Section ===== */
.activities-section {
    background: var(--gradient-green);
    color: var(--white);
    padding: 60px 40px;
    margin: 60px 0;
}

.activities-section .section-title {
    color: var(--white);
}

.activities-section .section-title::after {
    background: linear-gradient(to right, var(--white), rgba(255,255,255,0.5));
}

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

.activity-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

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

.activity-item .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.activity-item h5 {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.activity-item p {
    font-size: 0.9em;
    opacity: 0.9;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-gold);
    padding: 60px 40px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(44,95,79,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44,95,79,0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient-green);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: var(--accent-gold);
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--secondary-green);
}

.gallery-placeholder .icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.gallery-placeholder span {
    font-size: 0.9em;
    text-align: center;
    padding: 0 20px;
}

.gallery-caption {
    margin-top: 10px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95em;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f8f5;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--accent-gold);
}

.faq-question h4 {
    color: var(--primary-green);
    font-size: 1.1em;
}

.faq-question .toggle {
    font-size: 1.5em;
    color: var(--secondary-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== Blog ===== */
.blog-list {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.blog-image {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.blog-image .placeholder {
    text-align: center;
    color: var(--secondary-green);
}

.blog-image .placeholder .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.blog-content {
    padding: 25px 25px 25px 0;
}

.blog-content .date {
    color: var(--secondary-green);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--primary-green);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-content .read-more {
    color: var(--primary-green);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-content .read-more:hover {
    gap: 10px;
}

/* ===== Contact Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
}

.contact-info-box h3 {
    color: var(--primary-green);
    font-size: 1.5em;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--secondary-green);
}

.contact-info-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--cream-dark);
}

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

.form-group label {
    display: block;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
}

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

/* ===== About Page ===== */
.about-story {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid var(--cream-dark);
}

.about-story h3 {
    color: var(--primary-green);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.about-story p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.host-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #f8f6f0 0%, var(--cream-dark) 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.host-avatar {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5em;
    border: 5px solid var(--accent-gold);
}

.host-info h3 {
    color: var(--primary-green);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.host-info .title {
    color: var(--secondary-green);
    font-style: italic;
    margin-bottom: 20px;
}

.host-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== Footer ===== */
footer {
    background: var(--primary-green);
    color: var(--accent-gold);
    padding: 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.9em;
}

/* ===== Location Badges ===== */
.location-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.95em;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        min-height: 200px;
    }
    
    .blog-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-green);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px var(--shadow-medium);
    }
    
    .navbar-menu.active {
        transform: translateY(0);
    }
    
    .navbar-menu a {
        padding: 15px 20px;
        border-radius: 8px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .subtitle {
        font-size: 1.5em;
    }
    
    .grid-2,
    .grid-3,
    .amenities-list,
    .activities-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .host-profile {
        grid-template-columns: 1fr;
    }
    
    .host-avatar {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .highlight-box,
    .about-story,
    .contact-form,
    .contact-info-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero .subtitle {
        font-size: 1.2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
