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

:root {
    --black: #000000;
    --black-light: #070707;
    --black-card: #0a0a0a;
    --red: #e53935;
    --red-dark: #c62828;
    --gold: #ffb74d;
    --gold-light: #ffe082;
    --white: #ffffff;
    --white-smoke: rgba(255, 255, 255, 0.1);
    --gray: #888888;
    --gray-dark: #333333;
    --gym-blue: #2196f3;
    --gym-blue-dark: #1976d2;
    --gym-green: #4caf50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--red);
}

.gym-highlight {
    color: var(--gym-blue);
}

.selector-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.selector-container {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
}

.selector-header {
    margin-bottom: 50px;
}

.selector-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.letter {
    display: inline-block;
    transition: transform 0.1s ease;
    position: relative;
}

.letter-space {
    display: inline-block;
    width: 0.3em;
}

.letter.hit {
    animation: letterHit 0.5s ease;
}

@keyframes letterHit {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-20px) rotate(-10deg);
    }
    40% {
        transform: translateY(-10px) rotate(10deg);
    }
    60% {
        transform: translateY(-5px) rotate(-5deg);
    }
    80% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.selector-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.selector-card {
    background: var(--black-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.selector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gym-card .card-icon {
    color: var(--gym-blue);
}

.recipe-card .card-icon,
.fire-icon {
    color: var(--red);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.selector-card:hover .card-icon {
    transform: scale(1.1);
}

.gym-card:hover .card-icon {
    background: var(--gym-blue);
    color: var(--white);
}

.recipe-card:hover .card-icon {
    background: var(--red);
    color: var(--white);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-description {
    color: var(--gray);
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.card-features span {
    font-size: 0.75rem;
    padding: 5px 12px;
    background: var(--gray-dark);
    border-radius: 20px;
    color: var(--gray);
}

.gym-card:hover .card-features span {
    background: rgba(33, 150, 243, 0.2);
    color: var(--gym-blue);
}

.recipe-features span {
    background: rgba(229, 57, 53, 0.1);
}

.recipe-card:hover .card-features span {
    background: rgba(229, 57, 53, 0.2);
    color: var(--red);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gym-btn {
    background: var(--gym-blue);
    color: var(--white);
}

.gym-btn:hover {
    background: var(--gym-blue-dark);
}

.recipe-btn {
    background: var(--red);
    color: var(--white);
}

.recipe-btn:hover {
    background: var(--red-dark);
}

.card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.selector-card:hover .card-btn svg {
    transform: translateX(5px);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
    color: var(--black);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
}

.promo-badge span {
    display: block;
    font-size: 0.9rem;
}

.promo-badge small {
    font-size: 0.6rem;
    font-weight: 500;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.divider span {
    background: var(--gray-dark);
    color: var(--gray);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .divider {
        padding: 0 20px;
    }
}

.smoke-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.smoke-1 {
    background: var(--red);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.smoke-2 {
    background: var(--gold);
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
}

.smoke-3 {
    background: var(--white);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.chicken-drops {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.chicken {
    position: absolute;
    top: -60px;
    font-size: 2rem;
    animation: chickenFall linear infinite;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(255, 183, 77, 0.3));
}

@keyframes chickenFall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.chicken-1 { left: 5%; animation-duration: 8s; animation-delay: 0s; font-size: 1.8rem; }
.chicken-2 { left: 15%; animation-duration: 10s; animation-delay: 1s; font-size: 2.2rem; }
.chicken-3 { left: 25%; animation-duration: 7s; animation-delay: 3s; font-size: 1.5rem; }
.chicken-4 { left: 35%; animation-duration: 9s; animation-delay: 0.5s; font-size: 2rem; }
.chicken-5 { left: 45%; animation-duration: 11s; animation-delay: 2s; font-size: 1.7rem; }
.chicken-6 { left: 55%; animation-duration: 8s; animation-delay: 1.5s; font-size: 1.9rem; }
.chicken-7 { left: 65%; animation-duration: 12s; animation-delay: 0.5s; font-size: 1.6rem; }
.chicken-8 { left: 75%; animation-duration: 9s; animation-delay: 2.5s; font-size: 2.1rem; }
.chicken-9 { left: 85%; animation-duration: 10s; animation-delay: 1s; font-size: 1.8rem; }
.chicken-10 { left: 95%; animation-duration: 11s; animation-delay: 3s; font-size: 1.5rem; }
.chicken-11 { left: 10%; animation-duration: 13s; animation-delay: 4s; font-size: 2rem; }
.chicken-12 { left: 90%; animation-duration: 14s; animation-delay: 5s; font-size: 1.7rem; }

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--red-dark), var(--black));
    color: var(--white);
    padding: 10px 0;
    z-index: 2000;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.promo-banner.hidden {
    transform: translateY(-100%);
}

.promo-banner-link {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
}

.promo-banner-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.promo-banner-close:hover {
    opacity: 1;
}

.navbar {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar.banner-hidden {
    top: 0;
}

.navbar.no-banner {
    top: 0;
}

.gym-nav.scrolled {
    box-shadow: 0 5px 30px rgba(33, 150, 243, 0.2);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
}

.gym-accent {
    color: var(--gym-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.gym-nav .nav-link::after {
    background: var(--gym-blue);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .nav-menu.active {
        left: 0;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px; /* Reduced top spacing */
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse; /* Stack content, image on top */
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 50px;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        width: 100%;
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 57, 53, 0.1);
    color: var(--red);
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.badge-icon {
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@media (min-width: 992px) {
    .hero-features {
        justify-content: flex-start;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.4s both;
}

@media (min-width: 992px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: block; /* Always show */
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-image {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        max-width: none;
        margin: 0;
    }
}

.grill-visual {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 30px; /* Cute rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); /* Nice shadow */
    border: 4px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    background-image: url('images/burning_bg.jpeg');
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .grill-visual {
        width: 400px;
        height: 400px;
    }
}

.card-bg-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.grill-plate {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gray-dark) 0%, var(--black) 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--gray-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.flame {
    position: absolute;
    bottom: 60px;
    width: 30px;
    height: 60px;
    background: linear-gradient(to top, var(--red) 0%, var(--gold) 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.5s ease-in-out infinite alternate;
}

.flame-1 {
    left: 120px;
    animation-delay: 0s;
}

.flame-2 {
    left: 180px;
    animation-delay: 0.2s;
}

.flame-3 {
    left: 240px;
    animation-delay: 0.4s;
}

.smoke-particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(15px);
    animation: rise 3s ease-in-out infinite;
}

.smoke-p1 {
    left: 130px;
    bottom: 100px;
    animation-delay: 0s;
}

.smoke-p2 {
    left: 180px;
    bottom: 100px;
    animation-delay: 1s;
}

.smoke-p3 {
    left: 230px;
    bottom: 100px;
    animation-delay: 2s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-150px) scale(2);
        opacity: 0;
    }
}

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

/* Slider Styles */
.card-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 20px;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain so background is visible */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(0.9);
}

.slider-img.active {
    opacity: 1;
    animation: zoomEffect 5s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.recipe-card .card-content {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Menu Image Styles */
.menu-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

/* Menu Grid & Card Styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.menu-card {
    background: var(--black-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--red);
}

.menu-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: var(--white);
}

.menu-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.menu-price {
    font-size: 1.25rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
}

.menu-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: var(--red);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.gym-pack .gym-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gym-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

/* Order Section Styles */
.order {
    padding: 100px 0;
    background: var(--black);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

@media (min-width: 992px) {
    .order-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.order-info {
    animation: fadeInUp 0.6s ease both;
}

.order-description {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--black-card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--gray-dark);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--red);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 57, 53, 0.1);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

.order-form-container {
    background: var(--black-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-dark);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    padding: 15px;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Footer Styles */
.footer {
    background: var(--black-light);
    padding: 80px 0 30px;
    border-top: 1px solid var(--gray-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--red);
    transform: translateY(-5px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-contact li,
.footer-hours li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-hours li {
    justify-content: space-between;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-dark);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.back-to-selector {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.back-to-selector:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black-card);
    border: 1px solid var(--red);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.toast-icon {
    color: var(--gym-green);
    font-weight: 900;
}

/* Gallery Styles */
.gallery {
    padding: 80px 0;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transition: bottom 0.3s ease;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

@media (max-width: 768px) {
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* About Section Styles */
.about {
    padding: 100px 0;
    background: var(--black-light);
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .about-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

.about-card {
    background: var(--black-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray-dark);
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

.about-icon svg {
    width: 40px;
    height: 40px;
}

.gym-icon {
    color: var(--gym-blue);
}

.grill-icon {
    color: var(--red);
}

.about-card:hover .gym-icon {
    background: var(--gym-blue);
    color: var(--white);
}

.about-card:hover .grill-icon {
    background: var(--red);
    color: var(--white);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.about-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: bounce 2s infinite;
}

.about-arrow svg {
    width: 40px;
    height: 40px;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .about-arrow svg {
        transform: rotate(0deg);
        width: 60px;
        height: 60px;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* About Philosophy */
.about-philosophy {
    background: var(--black-card);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--gray-dark);
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content {
    text-align: center;
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.philosophy-content p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.check-icon {
    color: var(--gym-green);
    font-weight: 900;
}

/* Wales&Webs Footer Styles */
.wales-link {
    color: var(--white);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.wales-link:hover {
    color: #a855f7; /* Purple */
}

.wales-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    filter: drop-shadow(0 0 2px #a855f7);
    animation: purplePulse 2s infinite alternate;
}

@keyframes purplePulse {
    from {
        filter: drop-shadow(0 0 2px #a855f7);
    }
    to {
        filter: drop-shadow(0 0 5px #a855f7);
    }
}
