:root {
    /* Colors from Adobe XD */
    --primary-color: #449AAC;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;

    /* Font values */
    --font-playfair: 'Playfair Display', serif;
    --font-sans: 'PT Sans', sans-serif;
    --font-size-hero: 60px;
    --line-height-hero: 78px;
    --letter-spacing-normal: 0px;
}

/* Adobe XD Character Styles */
.unnamed-character-style-1 {
    font-family: var(--font-playfair);
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-hero);
    line-height: var(--line-height-hero);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--primary-color);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.header .container {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 100%;
    width: 331px;
    height: 125px;
}

/* Hero Section */
.hero {
    background: #2C2D80;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-icon {
    margin-bottom: 40px;
}

.maintenance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 4px solid var(--white);
    border-radius: 50%;
    font-size: 60px;
    font-weight: 300;
    color: var(--white);
    position: relative;
}

.maintenance-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: repeating-linear-gradient(90deg,
            var(--white) 0px,
            var(--white) 4px,
            transparent 4px,
            transparent 8px);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: var(--font-size-hero);
    line-height: 78px;
    font-weight: 700;
    margin-top: 44px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 50px;
    line-height: 65px;
    font-weight: 300;
    opacity: 0.9;
}

/* Contact Introduction */
.contact-intro {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.contact-title {
    font-family: var(--font-playfair);
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 auto;
    line-height: 67px;
}

/* Hotels Section */
.hotels {
    padding: 0;
}

.hotels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hotel-card {
    position: relative;
    height: 540px;
}

.hotel-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-overlay {
    z-index: 10;
    position: absolute;
    width: fit-content;
    min-width: 600px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #449bac;
    color: var(--white);
    padding: 24px 20px;
    text-align: center;
}

.hotel-overlay h3 {
    font-family: var(--font-sans);
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    margin: 0;
}

.hotel-card:hover .hotel-overlay {
    background: linear-gradient(to top, rgba(68, 154, 172, 0.9), rgba(68, 154, 172, 0.7));
}

/* Contact Details */
.contact-details {
    padding-top: 107px;
    padding-bottom: 62px;
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 40px;
    line-height: 52px;
}

.contact-phone {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-email {
    color: var(--primary-color);
    margin-bottom: 60px;
}

.contact-address {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    background-color: #2C2D80;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 37px;
    height: 37px;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link.facebook svg {
    transform: translateX(1px);
}

.divider {
    width: 3px;
    height: 379px;
    background: #2C2D80;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 74px 0 112px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer-title {
    font-size: 40px;
    line-height: 52px;
    color: #2C2D80;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 20px;
    color: #000;
    line-height: 26px;
    margin: 0 auto;
}


/* Smooth animations */
.hotel-overlay,
.social-link {
    transition: all 0.3s ease;
}

.hotel-image img {
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

/* responsive.css */
/* 1400px et moins */
@media (max-width: 1400px) {
    .logo {
        max-width: 100%;
        width: 200px;
        height: auto;
    }

    .hotel-card {
        position: relative;
        height: 400px;
    }
    
    .hotel-overlay {
        padding: 24px 24px;
        min-width: 350px;
        width: fit-content;
    }
    
    .hotel-overlay h3 {
        font-size: 24px;
        line-height: 28px;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        font-size: 28px;
        line-height: 32px;
    }
    
    .hero-title {
        font-size: 34px;
        line-height: 38px;
    }
    
    .hero-subtitle {
        font-size: 28px;
        line-height: 32px;
    }
    
    .contact-title {
        font-size: 34px;
        line-height: 38px;
        margin: 0 auto;
    }
}

/* 768px et moins */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-email {
        margin-bottom: 32px;
    }
    
    .contact-info {
        font-size: 20px;
        line-height: 24px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .footer-text {
        font-size: 16px;
        line-height: 20px;
    }
    
    .divider {
        width: 80%;
        margin-left: 50%;
        transform: translateX(-50%);
        height: 3px;
        background: #2C2D80;
    }
    
    .hotel-overlay {
        padding: 24px 24px;
        min-width: auto;
        width: auto;
        position: relative;
        bottom: 0px;
        left: 0px;
        right: auto;
        transform: translateX(0%);
        transform: translateY(-52px);
    }
    
    .hotel-overlay h3 {
        font-size: 24px;
        line-height: 28px;
    }
    
    .hotel-card:hover .hotel-overlay {
        background: #449bac;
    }
    
    .maintenance-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
}

/* 480px et moins */
@media (max-width: 480px) {
    .container {
        padding: 0 40px;
    }
    
    .logo h1 {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .hotel-card {
        position: relative;
        height: 300px;
    }
    
    .hotel-overlay {
        padding: 25px 20px;
    }
    
    .hotel-overlay h3 {
        font-size: 20px;
    }
    
    .footer-title {
        font-size: 16px;
        line-height: 20px;
    }
    
    .footer-text {
        font-size: 12px;
        line-height: 16px;
    }
    iframe {
        height: 1500px!important;
    }
}