/* css/style.css - External Stylesheet */
/* Stimela's Street Couture - Main CSS File */

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 90px;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-accent {
    color: #c6a43b;
    font-weight: 800;
}

/* ========== NAVIGATION STYLES ========== */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 8px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c6a43b !important;
}

.nav-link.active {
    color: #c6a43b !important;
    border-bottom: 2px solid #c6a43b;
}

.search-icon, .bag-icon {
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.search-icon:hover, .bag-icon:hover {
    color: #c6a43b;
}

/* ========== HERO SECTION ========== */
.hero-section {
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                url('../images/hero-placeholder.jpg') no-repeat center center/cover;
    background-size: cover;
    margin-top: -90px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    z-index: -1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ========== IMAGE PLACEHOLDERS ========== */
.placeholder-img {
    background: linear-gradient(145deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img-card {
    width: 100%;
    height: 160px;
    background: linear-gradient(145deg, #f1f3f5 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder-custom {
    transition: transform 0.3s ease;
}

.img-placeholder-custom:hover {
    transform: translateY(-5px);
}

.collection-img-placeholder {
    height: 280px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

/* ========== BUTTONS ========== */
.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #c6a43b;
    border-color: #c6a43b;
    color: #fff;
}

.btn-dark {
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #c6a43b;
    border-color: #c6a43b;
    color: #1a1a1a;
}

/* ========== CARDS ========== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15) !important;
}

/* ========== FORM STYLES ========== */
.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #c6a43b;
    box-shadow: 0 0 0 0.2rem rgba(198, 164, 59, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-info-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-item:hover {
    background-color: #fff;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-info-item i {
    color: #c6a43b;
    margin-bottom: 15px;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    margin-top: -30px;
}

.timeline-item {
    padding: 20px;
    border-left: 3px solid #c6a43b;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.team-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(145deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== COLLECTION PAGE STYLES ========== */
.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active-filter {
    background-color: #c6a43b;
    border-color: #c6a43b;
    color: white;
}

.collection-item {
    transition: all 0.3s ease;
}

.collection-item.hide-item {
    display: none;
}

/* ========== FOOTER ========== */
footer {
    margin-top: 60px;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #c6a43b !important;
}

.social-icons a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #c6a43b !important;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 10px 24px !important;
        font-size: 0.9rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.bg-gold {
    background-color: #c6a43b;
}

.text-gold {
    color: #c6a43b;
}

input:invalid, textarea:invalid {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #c6a43b;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}