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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'DM SANS', serif;
    color: #d9d9d9;
    line-height: 1.7;
}

/* GLOBAL HARD CLAMP */
body, html, main, section, div {
    max-width: 100%;
    overflow-x: hidden;
}

/* NAVIGATION */
.nav {
    background: white;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 2.25rem;
    letter-spacing: 0.5px;
    color: #7c4b33;
    text-transform: uppercase;
    margin-top: -4px;
}

.logo-subtext {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #7c4b33;
    text-transform: uppercase;
    margin-top: -4px;
}

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

.nav-links a {
    color: #7c4b33;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7c4b33;
}

/* HERO */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.3), rgba(244, 209, 181, 0.3)),
                url('/images/bryony1.jfif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: clamp(2px, 1vw, 10px);
    margin-bottom: 1.5rem;
    color: #7c4b33;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-style: italic;
    color: #7c4b33;
}

.cta-button {
    background: linear-gradient(135deg, #7c4b33, #f4d1b5);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.4);
}

/* ABOUT */
.about {
    padding: 8rem 5%;
    background: white;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.about-image {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(244, 209, 181, 0.1)),
                url('/images/bryony-about2.jpeg');
    background-size: cover;
    background-position: center top 20%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #7c4b33;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e8b4b8, #f4d1b5);
    margin-top: 1rem;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: #817474;
    line-height: 2;
    margin-bottom: 1.5rem;
}


/* REVIEWS */
.reviews {
    padding: 0rem 5% 3rem; /* top | sides | bottom */
    background: white;
}

.reviews-inner {
    max-width: 900px;
    margin: 0 auto;
}

.reviews h2 {
    text-align: center;
    font-size: 2.6rem; /* slightly smaller */
    font-weight: 300;
    letter-spacing: 3px;
	margin-top: 0;
    margin-bottom: 0.3rem; /* reduced */
    color: #7c4b33;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: #7c4b33;
    margin-bottom: 2.5rem; /* reduced */
}

.reviews-grid {
    display: grid;
    gap: 1.5rem; /* tighter spacing */
	grid-template-columns: repeat(4, 1fr);
}

.review-card {
    background: #d9d9d9;
    
    padding: 1.4rem; /* reduced from 2rem */
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06); /* softer shadow */
}

.review-text {
    font-family: 'DM SANS', serif;
    font-size: 1rem; /* slightly smaller */
    color: #7c4b33;
    margin-bottom: 0.6rem; /* reduced */
    line-height: 1.5;
}

.review-author {
    font-size: 0.9rem;
    color: #7c4b33;
    font-weight: 600;
    text-align: right;
}

/* CTA */
.reviews-cta {
    text-align: center;
    margin-top: 2.5rem; /* reduced */
}

.reviews-cta p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #7c4b33;
}

.reviews-button {
    display: inline-block;
    padding: 0.8rem 1.6rem; /* smaller button */
    background: #b48f57;
    color: white;
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.reviews-button:hover {
    background: #a07c4c;
}


/* CTA */
.reviews-cta {
    text-align: center;
    margin-top: 4rem;
}

.reviews-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2d3142;
}

.reviews-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #b48f57;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.reviews-button:hover {
    background: #a07c4c;
}


/* VENUES */
.venues {
    padding: 8rem 5%;
    background: white;
	color: #7c4b33
}

.venues-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.venue-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.venue-card {
    background: white;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(232, 180, 184, 0.2);
}

.venue-image,
.home-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: block;
}

 .venue-image {
            width: 100%;
            height: 300px;
            /* REPLACE WITH YOUR VENUE IMAGE URLS - One for home, one for studio */
            background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(244, 209, 181, 0.1)),
                        url('/images/classes.jpeg');
           
            background-size: cover;
            background-position: center bottom 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e8b4b8;
        }
		
		.home-image {
            width: 100%;
            height: 300px;
            /* REPLACE WITH YOUR VENUE IMAGE URLS - One for home, one for studio */
            background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(244, 209, 181, 0.1)),
                        url('/images/home.jpeg');
            
            background-size: cover;
            background-position: center bottom 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e8b4b8;
        }

.venue-content {
    padding: 3rem;
}

.venue-content h3 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #7c4b33;
}

.venue-content p {
    color: #7c4b33;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.venue-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #fce4d6;
}

.venue-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
	color: #817474;
}

.venue-detail-item strong {
    min-width: 120px;
    display: inline-block;
}





.book-button {
    background: linear-gradient(135deg, #b48f57, #f4d1b5);
    color: white;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(232, 180, 184, 0.3);
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 180, 184, 0.4);
}

/* CONTACT */
.contact {
    padding: 8rem 5%;
    background: #f9f5f2;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: #b48f57;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b48f57;
    margin-bottom: 4rem;
    font-style: italic;
}

.contact-form {
    background: white;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 20px;
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #b48f57;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #fce4d6;
    background: #fef5e7;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #2d3142;
    transition: all 0.3s;
    border-radius: 10px;
}

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

 .form-message {
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 24px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: #fef5e7;
            border: 2px solid #fce4d6;
            color: #2d3142;
            display: block;
        }

        .form-message.error {
            background: rgba(255, 51, 102, 0.15);
            border: 2px solid #FF3366;
            color: #FF3366;
            display: block;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }


.submit-button {
    background: linear-gradient(135deg, #b48f57, #f4d1b5);
    color: white;
    padding: 1.3rem 3rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
    border-radius: 50px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

/* FOOTER */
.footer {
    background: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    letter-spacing: 1px;
    color: #817474;
}

/* TABLET */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-inner,
    .venue-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .section-title,
    .about-text h2,
    .contact h2 {
        font-size: 2.5rem;
    }
}


/* MOBILE (IPHONE) */
@media (max-width: 480px) {

    .nav {
        padding: 1rem 1rem;
    }

    .hero {
        height: 55vh;
        padding: 0.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.9rem;
        letter-spacing: 2px;
        line-height: 1.1;
        word-break: break-word;
        overflow-wrap: break-word;
        width: 100%;
        display: block;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button,
    .book-button {
        padding: 0.8rem 1.6rem;
        font-size: 0.75rem;
    }

    .about {
        padding: 4rem 1rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .about-image {
        height: 300px;
    }

    .benefits-grid {
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .venues {
        padding: 4rem 1rem;
    }

    .venue-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .venue-image,
    .home-image {
        height: 220px;
    }

    .contact {
        padding: 4rem 1rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .contact h2 {
        font-size: 2rem;
    }
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #b48f57;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile menu open state */
.nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav.open .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav.open .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav.open .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Show hamburger on mobile */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 1.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Book Now button (mobile only) */
.floating-book {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b48f57, #f4d1b5);
    color: white;
    padding: 1rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    display: none;
}

.floating-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Show only on mobile */
@media (max-width: 768px) {
    .floating-book {
        display: inline-block;
    }
}

/* Tablet: 2 across */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 across */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
