* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --text: #333;
    --light-text: #666;
    --border: #eaeaea;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --card-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--bg-primary);
}

.container {
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-size: 1.1rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Remove old hero styles and add new header styles */
.page-header {
    margin-top: 84px; /* Keep this to account for fixed navbar */
    padding: 0;
    background: none;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 400;
}

/* Add presentation section styles */
.presentation {
    margin-top: 84px; /* Height of navbar + padding */
    padding: 3rem 2rem;
    background: white;
}

.presentation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.presentation-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

/* Hotels Section */
.hotels-section {
    padding-top: 2rem;
    padding-bottom: 6rem;  /* Added padding at the bottom */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: var(--primary);
}

.hotel-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hotel-card {
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

.hotel-card:hover {
    transform: translateY(-4px);
}

.hotel-image {
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

/* Remove old background-image styles */
.hotel-image.residence,
.hotel-image.adresse {
    background-image: none;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.hotel-content p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.discover-btn {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    margin-top: 2rem;  /* Added margin at the top */
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item:hover .contact-icon svg {
    fill: var(--text);
}

.contact-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item address {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-style: normal;
}

.contact-item a:hover {
    color: var(--text);
}

/* Add icon styles to contact section */
.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

/* Footer */
footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-content p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .page-header {
        margin-top: 76px;
        padding: 0;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .hotels-section {
        padding: 2rem 1rem 4rem;  /* Adjusted padding for mobile */
    }

    .hotel-cards {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        gap: 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo span {
        font-size: 1rem;
    }

    .footer-logo {
        height: 50px;
    }

    .presentation {
        margin-top: 76px;
        padding: 2rem 1rem;
    }

    .presentation-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-section {
        margin-top: 1rem;  /* Adjusted margin for mobile */
    }
} 