/* Custom CSS for Homepage - AL-QATHIFI Shoe Store */

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Typography */
.hero-main-title {
    font-family: 'Amiri', 'Tajawal', serif;
    text-shadow: 0 8px 25px rgba(0,0,0,0.7);
    font-size: 8rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #f97316;
}

.hero-subtitle {
    font-family: 'Amiri', 'Tajawal', serif;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #f97316;
}

.hero-location {
    font-size: 64px !important; /* Set to 64px as starting point */
    color: #fa7212 !important;
    font-family: 'Amiri', 'Tajawal', serif !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
}

/* More specific selector to override any conflicts */
.hero-section .hero-container .hero-content .hero-location {
    font-size: 64px !important;
    color: #fa7212 !important;
    font-family: 'Amiri', 'Tajawal', serif !important;
}

.hero-description {
    font-family: 'Amiri', 'Tajawal', sans-serif;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    font-size: 1.75rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #e5e7eb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.hero-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-button {
    font-family: 'Amiri', 'Tajawal', serif;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 3rem; /* Increased padding for bigger button */
    font-size: 1.5rem; /* Made text bigger */
    font-weight: 700; /* Made text bolder */
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
    border: none;
    cursor: pointer;
}

.hero-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-main-title { 
        font-size: 4rem !important; 
        margin-bottom: 2rem !important; 
    }
    .hero-subtitle { 
        font-size: 2.5rem !important; 
        margin-bottom: 1.5rem !important; 
    }
    .hero-location { 
        font-size: 48px !important; /* Smaller for tablets but still prominent */
        margin-bottom: 2rem !important; 
    }
    .hero-description { 
        font-size: 1.25rem !important; 
        margin-bottom: 2rem !important; 
    }
    .hero-cta-button {
        font-size: 1.25rem !important;
        padding: 0.75rem 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-main-title { 
        font-size: 3rem !important; 
    }
    .hero-subtitle { 
        font-size: 2rem !important; 
    }
    .hero-location { 
        font-size: 36px !important; /* Smaller for phones but still readable */
    }
    .hero-description { 
        font-size: 1.1rem !important; 
    }
    .hero-cta-button {
        font-size: 1.1rem !important;
        padding: 0.6rem 1.5rem !important;
    }
}

/* Clean responsive location text */ 