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

html {
    background: #3c5349;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #3c5349;
    color: #ffffff;
    line-height: 1.6;
    box-shadow: none;
}

section {
    box-shadow: none;
    background: #3c5349;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #3c5349;
    border-bottom: 1px solid #ffffff;
    z-index: 1000;
    padding: 1.5rem 3rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo img {
    height: 4rem;
    width: auto;
    display: block;
}

.gslogomain {
    height: 15rem;
    width: auto;
    display: block;
    margin: auto;
    padding-bottom: 2rem;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 3rem 3rem 3rem;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    background: #3c5349;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

.hero-link:hover {
    opacity: 0.6;
}

/* Studio Sections */
.studio-section {
    padding: 2rem 3rem 6rem 3rem;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    background: #3c5349;
}

.studio-container {
    max-width: 900px;
    margin: 0 auto;
}

.studio-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.studio-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

.studio-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

.studio-section a:hover {
    opacity: 0.6;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gear-group {
    border: 1px solid #ffffff;
    padding: 2rem;
    text-align: left;
}

.gear-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gear-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.gear-list li {
    margin-top: 0.35rem;
}

.gear-list li:first-child {
    margin-top: 0;
}

/* Loft Section */
.loft-section {
    padding: 2rem 3rem 6rem 3rem;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    background: #3c5349;
}

.loft-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.loft-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.media-gallery {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.media-tile {
    margin: 0;
    border: 1px solid #ffffff;
    overflow: hidden;
    background: #3c5349;
}

.media-tile img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}

.media-tile img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Book/Newsletter Section */
.booking-section {
    padding: 2rem 3rem 6rem 3rem;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    background: #3c5349;
    overflow: hidden;
}

.booking-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.booking-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.booking-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dates-help {
    margin: 0 auto;
    font-size: 0.95rem;
    text-align: left;
    max-width: 600px;
    margin-bottom: 0 !important;
}

#addDateBtn {
    background: #1e362c;
    color: white;
    border: 1px solid white;
}

#membershipBtn {
    padding: 1rem 2rem;
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

#membershipBtn:hover {
    background: white;
    color: #1e362c;
}

#membershipOptions {
    display: none;
    position: relative;
}

#membershipOptions h3 {
    margin-bottom: 3rem;
}

#backBtn {
    position: absolute;
    left: 3rem;
    top: 6.5rem;
    padding: 0.5rem 1rem;
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
}

.membership-options-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    border: 1px solid #ffffff;
    padding: 3rem;
    text-align: center;
}

.membership-card h4 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.membership-card p {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.membership-card ul {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.membership-card li {
    margin-bottom: 0.5rem;
}

.membership-card button {
    padding: 1rem 2rem;
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
}

.membership-card button:disabled {
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: not-allowed;
    opacity: 0.6;
}

.membership-card button:disabled:hover {
    background: #1e362c;
    color: white;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    background: transparent;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    border: 1px solid #ffffff;
    background: #ffffff !important;
    color: #00075a;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-form #datesContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    background: transparent;
}

.booking-form .date-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form button {
    padding: 1rem 2rem;
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.booking-form button:hover {
    background: white;
    color: #1e362c;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #00075a;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background: #1e362c;
    color: white;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: white;
    color: #1e362c;
}

/* Footer */
footer {
    padding: 4rem 3rem;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    background: #3c5349;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column a:hover {
    opacity: 0.6;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.footer-logo img {
    height: 4rem;
    width: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #3c5349;
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid #ffffff;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

    .studio-section h2,
    .loft-section h2 {
        font-size: 1.8rem;
    }

    footer {
        flex-direction: column;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .booking-form {
        padding: 0;
        max-width: 100%;
    }

    .booking-form input[type="date"] {
        font-size: 16px;
    }

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

    .gear-group {
        padding: 1.5rem;
    }

    #backBtn {
        left: 1.5rem;
    }

    .membership-card {
        padding: 2rem;
    }

    .media-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
