:root {
    --primary-green: #2d5a3d;
    --accent-yellow: #f4d03f;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.navbar {
    background: rgba(45, 90, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Shrink navbar when scrolled */
.navbar-scrolled {
    padding: 0.5rem 0 !important;
    background: rgba(45, 90, 61, 0.98);
}

.navbar-scrolled .logo {
    height: 50px !important;
}

.navbar-scrolled .nav-link {
    font-size: 0.95rem !important;
}

.navbar-brand .logo {
    height: 160px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.05rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(45, 90, 61, 0.4), rgba(45, 90, 61, 0.5)), url('../images/1000043644.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease;
}

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

/* Section Styles */
.section {
    padding: 5rem 0;
    min-height: 50vh;
}

.section:nth-child(even) {
    background-color: white;
}

.section:nth-child(odd) {
    background-color: var(--light-gray);
}

.section h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.section p, .section li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #1e3a28;
    border-color: #1e3a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.4);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.4);
}

/* Safety Section */
.safety-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-yellow);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 500;
    color: var(--dark-gray);
    flex: 1;
}

.pricing-amount {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.hours-list .pricing-amount {
    font-weight: 600;
    font-size: 1rem;
}

/* Event Cards */
.event-card {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.event-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card p {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.event-duration {
    font-weight: 600;
    color: var(--accent-yellow);
    background: rgba(244, 208, 63, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

.event-schedule {
    font-style: italic;
    color: #666;
}

.event-dates {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.event-banquet {
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: white;
    color: var(--dark-gray);
}

.contact-section h2 {
    color: var(--primary-green);
}

.contact-section h2::after {
    background: var(--accent-yellow);
}

.contact-section h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-section p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 400;
}

.contact-info {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-content {
        padding-top: 140px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .navbar {
        padding: 1.25rem 0;
    }
    
    .navbar-scrolled {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-brand .logo {
        height: 100px;
    }
    
    .navbar-scrolled .logo {
        height: 45px !important;
    }
    
    .navbar-nav {
        background: rgba(45, 90, 61, 0.98);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem;
        font-size: 1rem !important;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.65rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding-top: 120px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-brand .logo {
        height: 80px;
    }
    
    .navbar-scrolled .logo {
        height: 40px !important;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}