/* Custom Styles for Visual Improvements */

/* General Section Styling */
.custom-section-title {
    margin-bottom: 40px;
    text-align: center;
}

.custom-section-title .sub-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #d63315;
    /* Red accent from theme */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.custom-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* Promotional Photos Section */
.promotional-section {
    padding: 100px 0;
    background-color: #000000;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    /* Center items vertically relative to each other if needed */
}

/* Stylish Asymmetry for Desktop */
@media (min-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promo-item:nth-child(2) {
        margin-top: 60px;
        /* Push the second item down for asymmetry */
    }
}

.promo-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    /* Sharper, more modern look */
    height: 600px;
    /* Fixed height for vertical look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-item:hover img {
    transform: scale(1.15);
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 1;
    /* Always visible but gradient changes */
    transition: background 0.3s ease;
}

.promo-item:hover .promo-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.promo-overlay h3 {
    font-family: 'Forum', cursive;
    /* Use the fancy font from the theme */
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.promo-overlay p {
    font-size: 16px;
    color: #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.promo-item:hover .promo-overlay h3,
.promo-item:hover .promo-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    /* Slightly lighter black for contrast */
    border-top: 1px solid #222;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #d63315;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 40px;
    color: #d63315;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-card p {
    color: #bbbbbb;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #d63315;
}


/*CUSTOM FOOTER*/

.luxury-footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 0px 5% 40px 5%;
    font-family: var(--font-sans);
    border-top: 1px solid #d5b038;
}

.reveal-text {
    color: var(--text-muted);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Titre imposant en arrière-plan */
.footer-hero h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    opacity: 0.1;
    margin-bottom: -120px;
    letter-spacing: -2px;
}

.footer-hero h2 span {
    padding-left: 10%;
    color: var(--accent-gold);
}

/* Mise en page des marques */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.brand-label {
    display: none;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-hours {
    font-size: 0.85rem;
}

/* Liens stylisés */
.minimal-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 5px;
    transition: all 0.4s ease;
}

.minimal-link:hover {
    padding-left: 15px;
    letter-spacing: 1px;
}

/* Réseaux sociaux et Copyright */
.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        text-align: left;
        margin-top: 40px;
    }

    .social-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* Responsive Fixes */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

.banner-one {
    overflow: hidden;
}

@media (max-width: 991px) {
    .banner-one .shape.shape-one {
        display: none;
    }
}