/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
}

/* Honeycomb pattern background */
.honeycomb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255, 193, 7, 0.03) 40px, rgba(255, 193, 7, 0.03) 42px),
        repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(255, 193, 7, 0.03) 40px, rgba(255, 193, 7, 0.03) 42px);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #D4AF37;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

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

.nav-links a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid transparent;
}

.nav-links a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: #000;
    color: #FFC107;
    padding: 8rem 2rem 4rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 152, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    color: #000;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: 2px solid #FFC107;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(45deg, #FF9800, #FFC107);
}

/* Mascot section */
.mascot-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.mascot-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    border: 2px solid #FFC107;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background: #000;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #111;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
    font-weight: 700;
}

.service-card p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
    font-size: 0.9rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    background: linear-gradient(45deg, #B8860B, #D4AF37);
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #000;
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    font-weight: 800;
}

/* Membership cards */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    background: #111;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
}

.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #B8860B;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(184, 134, 11, 0.2);
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #fff;
}

.features li:last-child {
    border-bottom: none;
}

.join-btn {
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    background: linear-gradient(45deg, #B8860B, #D4AF37);
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #111;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #FFC107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.feature-item h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #fff;
}

/* Footer */
.footer {
    background: #000;
    color: #D4AF37;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Clothes page specific styles */
.clothes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.clothes-item {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clothes-item:hover {
    transform: translateY(-5px);
    border-color: #FFC107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.clothes-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #000, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC107;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.clothes-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

.clothes-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.clothes-info h3 {
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-size: 1.1rem;
    line-height: 1.3;
}

.clothes-info p {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.clothes-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #B8860B;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(184, 134, 11, 0.2);
}

.buy-btn {
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid #D4AF37;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
}

.buy-btn:hover {
    background: linear-gradient(45deg, #B8860B, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .clothes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mascot-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mascot-image {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 2rem 1rem;
    }
}
