:root {
    --primary-teal: #2A9D8F;
    --secondary-orange: #E76F51;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --text-light: #F1FAEE;
    --text-muted: #A8DADC;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--secondary-orange);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 2rem 2rem;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../assets/images/banner.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero-content .promo-badge {
    position: relative;
    display: inline-block;
    top: 0;
    right: 0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-teal);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.4);
}

.btn-primary:hover {
    background-color: #21867a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.5);
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-teal));
}

/* About Section */
.section-padding {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-teal);
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-teal), var(--secondary-orange));
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 30, 30, 0.8);
}

.about-card h3 {
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background-color: #0b0b0b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.product-item {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.product-item h3 {
    font-size: 1.25rem;
    color: var(--text-light);
}

.tshirts-card {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/shirts-aisle.png');
    background-size: cover;
    background-position: center;
}

.tshirts-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.6)), url('../assets/images/shirts-aisle.png');
    background-size: cover;
    background-position: center;
}

.formal-shirts-card {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('../assets/images/formal-shirts-bg.jpg');
    background-size: cover;
    background-position: center;
}

.formal-shirts-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/formal-shirts-bg.jpg');
    background-size: cover;
    background-position: center;
}

.trousers-card {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('../assets/images/trousers-bg.jpg');
    background-size: cover;
    background-position: center;
}

.trousers-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/trousers-bg.jpg');
    background-size: cover;
    background-position: center;
}

.accessories-card {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/mixed-aisle.jpg');
    background-size: cover;
    background-position: center;
}

.accessories-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.6)), url('../assets/images/mixed-aisle.jpg');
    background-size: cover;
    background-position: center;
}

.jackets-card {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/jackets-aisle.jpg');
    background-size: cover;
    background-position: center;
}

.jackets-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.6)), url('../assets/images/jackets-aisle.jpg');
    background-size: cover;
    background-position: center;
}

.footwear-card {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('../assets/images/footwear-bg.jpg');
    background-size: cover;
    background-position: center;
}

.footwear-card:hover {
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('../assets/images/footwear-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Contact Section */
#contact {
    background-color: #0b0b0b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 1.8rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-teal);
    background: rgba(42, 157, 143, 0.08);
    border-radius: 0 12px 12px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item:hover {
    background: rgba(42, 157, 143, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.2);
}

.info-label {
    display: block;
    color: var(--secondary-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.15rem;
    display: block;
    line-height: 1.6;
    color: var(--text-light);
}

.social-link {
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-teal);
}

/* Map and Gate Container */
.map-gate-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.gate-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gate-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.entrance-image-card {
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    background: transparent;
}

.entrance-image-card:hover {
    transform: scale(1.02);
}

.entrance-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .entrance-image-card {
        height: 300px;
    }
}

/* Footer */
footer {
    background-color: #050505;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-teal);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.mobile-menu a:hover {
    color: var(--primary-teal);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    #contact {
        background-color: #0b0b0b;
    }

    .hero {
        background-position: center;
        background-size: cover;
        height: auto;
        min-height: 70vh;
        padding-top: 120px;
        align-items: center;
    }

    .info-item {
        padding: 1.2rem;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .info-value {
        font-size: 1rem;
    }

    /* Ensure product backgrounds display on mobile */
    .product-item {
        background-size: cover !important;
        background-position: center !important;
    }
}