/* Main Stylesheet for Eco-Luxury Glamping Site */

/* Root Variables & Color Palette */
:root {
    /* Primary Colors */
    --primary-1: #829F82; /* Sage Green */
    --primary-2: #D9C2AD; /* Warm Sand */
    --primary-3: #9C7A6B; /* Earthy Brown */
    --primary-4: #E3DCD1; /* Off White */
    --primary-5: #5A6E5A; /* Deep Forest */
    
    /* Light/Dark Variations */
    --primary-1-light: #A7BCA7;
    --primary-1-dark: #5E755E;
    --primary-2-light: #F0E5D8;
    --primary-2-dark: #BEA999;
    --primary-3-light: #B69A8E;
    --primary-3-dark: #7D5F53;
    --primary-4-light: #F7F3EE;
    --primary-4-dark: #C4BBB0;
    --primary-5-light: #7C8E7C;
    --primary-5-dark: #3E513E;
    
    /* Font Sizes */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2.5rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: var(--primary-4-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-5-dark);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-3);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-3-dark);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-3);
    color: var(--primary-3);
}

.btn-outline:hover {
    background-color: var(--primary-3);
    color: white;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    color: var(--primary-5);
    font-weight: 700;
}

.nav-link {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title h2 {
    font-size: var(--font-size-xxl);
    margin-bottom: var(--spacing-xs);
}

.section-title p {
    color: var(--primary-3);
    font-size: var(--font-size-lg);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-2);
    margin: var(--spacing-sm) auto;
}

/* Service Item Styles */
.service-item {
    padding: var(--spacing-md);
    background-color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: var(--spacing-sm);
}

.service-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    color: var(--primary-5);
    font-weight: 700;
}

/* Feature Items */
.feature-item {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-1);
    margin-bottom: var(--spacing-sm);
}

/* Team Members */
.team-member {
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.team-member-info {
    padding: var(--spacing-sm);
    background-color: white;
    text-align: center;
}

.team-member-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-lg);
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: var(--font-size-sm);
    color: var(--primary-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-2-light);
    position: relative;
}

.testimonial-item {
    padding: var(--spacing-md);
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-5);
}

/* FAQ Section */
.faq-item {
    margin-bottom: var(--spacing-sm);
    border: none;
}

.faq-question {
    padding: var(--spacing-sm);
    background-color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-answer {
    padding: var(--spacing-sm);
    background-color: var(--primary-4-light);
}

/* Gallery */
.gallery-item {
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 0;
    border: 1px solid var(--primary-4-dark);
    padding: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

/* Footer */
footer {
    background-color: var(--primary-5);
    color: white;
    padding: var(--spacing-md) 0;
}

footer h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

footer a {
    color: var(--primary-4-light);
}

footer a:hover {
    color: white;
}

small#site-copyright {
    display: block;
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-md);
}

/* Decorative Elements */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.blob {
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-1);
    top: -150px;
    right: -150px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background-color: var(--primary-2);
    bottom: -100px;
    left: -100px;
} 