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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* 1. HERO SECTION (DESKTOP) */
.hero {
    background-image: url('gym-bg.png'); 
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: top center; 
    height: 100vh; 
    
    /* DESKTOP FIX: Prevents logo cut-off on wide screens */
    min-height: 800px; 
    
    position: relative;
    width: 100%;
}

.mobile-hero-img { display: none; }

/* 2. NAVIGATION BAR */
.nav-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-bar a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 15px;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.nav-bar a:last-child { margin-right: 0; }
.nav-bar a:hover { color: #FF4D00; }

/* 3. SECTIONS */
.collection-section, .info-section {
    padding: 80px 20px; 
    background: #f9f9f9;
    text-align: center;
}

.info-section { background: white; max-width: 900px; margin: 0 auto; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
    color: #1a1a1a;
}

/* 4. PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    max-width: 1000px; 
    margin: 0 auto;
    align-items: start;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%; /* Keeps cards same height */
}

/* EQUAL BOX FIX */
.img-container {
    width: 100%;
    height: 350px; 
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.product-img {
    max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
}

.card-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: #000; font-weight: 800; }
.card-info p { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex-grow: 1; }

.btn-buy {
    display: block; text-align: center; padding: 12px 0; background: #333;
    color: white; text-decoration: none; font-weight: bold; border-radius: 5px; font-size: 0.9rem; margin-top: auto;
}
.btn-buy:hover { background: #FF4D00; }

/* 5. CONTACT FORM */
.contact-box {
    background: white; padding: 40px; border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 700px; margin: 0 auto; text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Montserrat', sans-serif;
}
.btn-submit {
    width: 100%; padding: 15px; background: #333; color: white; border: none;
    border-radius: 5px; font-size: 1rem; font-weight: 900; text-transform: uppercase; cursor: pointer;
}
.btn-submit:hover { background: #FF4D00; }

/* 6. FOUNDER & FOOTER */
.founder-img {
    width: 250px; height: 250px; border-radius: 50%; object-fit: cover;
    margin-bottom: 20px; border: 5px solid #f4f4f4; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.founder-name { font-size: 1.5rem; font-weight: 900; color: #333; margin-bottom: 5px; }
.founder-title { font-size: 1rem; color: #FF4D00; font-weight: bold; margin-bottom: 20px; text-transform: uppercase;}
.founder-text { font-size: 1rem; color: #555; margin-bottom: 20px; line-height: 1.8; text-align: left; }

footer {
    background: #1a1a1a; color: white; text-align: center; padding: 60px 20px; border-top: 5px solid #FF4D00;
}
footer a { color: white; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: #FF4D00; }

/* =========================================
   MOBILE RESPONSIVENESS (LOCKED IN)
========================================= */
@media (max-width: 768px) {
    
    .hero { 
        background: none !important; 
        height: auto; 
        min-height: 0; 
        margin-bottom: 0; 
        overflow: hidden; 
    }
    
    /* 1. Mobile Image: 87% Height */
    .mobile-hero-img {
        display: block; 
        width: 100%; 
        height: 87vh; 
        object-fit: cover; 
        object-position: top center;
    }

    /* 2. Transparent & Compact Nav */
    .nav-bar {
        position: absolute; top: 20px; left: 20px; width: auto; border-radius: 30px;
        text-align: left; padding: 5px 10px; display: flex; flex-wrap: nowrap;
        background: rgba(255,255,255,0.6); 
    }
    .nav-bar a { margin-right: 12px; font-size: 0.65rem; white-space: nowrap; }
    .nav-bar a:last-child { margin-right: 0; }
    
    /* 3. Equal Boxes */
    .product-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .product-card { max-width: 350px; margin: 0 auto; width: 100%; }
    .img-container { height: 300px; }
}