/* --- HOME PAGE SPECIFIC STYLES --- */

/* Immersive Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                url('../images/hero/hero-main.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 45px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Action Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-premium:hover {
    background: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 2px solid var(--text-light);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Design Catalogue Section */
.catalogue-section {
    padding: 100px 8%;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.catalogue-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.catalogue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalogue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.catalogue-card:hover .catalogue-img {
    transform: scale(1.1);
}

.catalogue-card:hover .catalogue-overlay {
    opacity: 1;
}

.catalogue-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.catalogue-info p {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.catalogue-card:hover .catalogue-info h3,
.catalogue-card:hover .catalogue-info p {
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium, .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}
