/* Global Styles for Hip-Hop Fashion Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Header Styles */
.site-header-main {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-brand-section h1 {
    margin: 0;
}

.logo-brand-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-navigation-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.main-navigation-menu a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hero-banner-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-banner-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-primary:hover {
    background-color: #ee5a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Container */
.content-container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Grid Layouts */
.style-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.style-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.style-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.style-card-item:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-content-area {
    padding: 1.5rem;
}

.card-content-area h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card-content-area p {
    color: #555;
    line-height: 1.8;
}

/* Section Styles */
.feature-section-block {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 12px;
}

.about-intro-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.trend-showcase-area {
    margin: 3rem 0;
}

.trend-showcase-area h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Image Gallery */
.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: #f5f5f5;
    height: 200px;
}

.gallery-item-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group-field {
    margin-bottom: 1.5rem;
}

.form-group-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group-field input,
.form-group-field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group-field input:focus,
.form-group-field textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Footer */
.site-footer-main {
    background: #2c3e50;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container-wrap {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation-menu ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-banner-section h2 {
        font-size: 1.8rem;
    }

    .style-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center-align {
    text-align: center;
}

.margin-top-large {
    margin-top: 3rem;
}

.padding-vertical-medium {
    padding: 2rem 0;
}
