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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #1e3a21 0%, #2c5530 50%, #3d6b42 100%);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateZ(0);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
}

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

.logo {
    background: linear-gradient(45deg, #ffffff 0%, #e8f5e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-right: auto;
    text-decoration: none;
}

.logo:focus {
    outline: 3px solid #90EE90;
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #90EE90;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #90EE90 0%, #7ED321 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:focus {
    outline: 3px solid #90EE90;
    outline-offset: 2px;
    color: #90EE90;
}

.nav-links a:focus::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(30, 58, 33, 0.7) 0%, 
        rgba(44, 85, 48, 0.6) 30%, 
        rgba(61, 107, 66, 0.5) 70%, 
        rgba(144, 238, 144, 0.2) 100%), 
        url('images/turffield.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.cta-button {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:focus {
    outline: 3px solid #90EE90;
    outline-offset: 3px;
    background: rgba(255, 255, 255, 0.25);
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(144, 238, 144, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Before/After Section */
.before-after {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(44, 85, 48, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(44, 85, 48, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.gallery-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
    position: relative;
    z-index: 2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    contain: layout style paint;
    position: relative;
    z-index: 2;
}

.gallery-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.gallery-item:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.12);
    will-change: transform;
}

.gallery-item:not(:hover) {
    will-change: auto;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    transform: translateZ(0);
    image-rendering: auto;
}

.gallery-item img:hover {
    transform: scale(1.01) translateZ(0);
}

.gallery-item img:focus {
    outline: 3px solid #2c5530;
    outline-offset: 4px;
    border-radius: 10px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2c5530;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #90EE90;
    outline-offset: 2px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-content:focus {
    outline: 3px solid #90EE90;
    outline-offset: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Back Button */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-link:hover {
    color: #3d6b42;
}

.back-link:focus {
    outline: 3px solid #2c5530;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(44, 85, 48, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 85, 48, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 85, 48, 0.12);
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    background: linear-gradient(45deg, #90EE90 0%, #7ED321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -10px;
    left: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reviewer {
    font-weight: bold;
    color: #2c5530;
}

.stars {
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e3a21 0%, #2c5530 30%, #3d6b42 70%, #4a7c59 100%);
    color: white;
    position: relative;
    padding: 2rem 2rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(144, 238, 144, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    font-size: 1.1rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #90EE90;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #90EE90;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(144, 238, 144, 0.3);
}

.social-links a:focus {
    outline: 3px solid #90EE90;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3d1e 0%, #2c5530 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3a21 0%, #2c5530 50%, #3d6b42 100%);
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .nav-links a {
        text-align: center;
        margin: 0.2rem 0;
        padding: 0.6rem 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .gallery-section {
        padding: 2rem 1rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem 0 0.75rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
        border-width: 1px;
    }

    .about-text {
        font-size: 1.15rem;
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact {
        padding: 1.5rem 1rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 600px;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-section h1 {
        font-size: 2rem;
    }
}

