@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400&display=swap');

:root {
    --primary-font: 'Cormorant Garamond', serif;
    --secondary-font: 'Montserrat', sans-serif;
    --background-color: #FDF8F5;
    --text-color: #4E443C;
    --accent-color: #BCA89F;
    --highlight-color: #8C7D70;
}

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

body {
    font-family: var(--secondary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 300;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 3rem 1rem;
}

header .logo {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 2rem;
}

.hero-title {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title h1 {
    font-family: var(--primary-font);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-title p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
}

.hero-banner {
    margin-bottom: 4rem;
}

.hero-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
}

h2 {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--highlight-color);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.details-grid ul {
    list-style: none;
}

.details-grid ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.details-grid ul li::before {
    content: '✧';
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
}

.timeline table {
    width: 100%;
    border-collapse: collapse;
}

.timeline th, .timeline td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.timeline th {
    font-weight: 400;
    color: var(--highlight-color);
}

.bottom-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.bottom-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#reservation {
    background-color: var(--text-color);
    color: var(--background-color);
    text-align: center;
}

#reservation h2 {
    color: var(--background-color);
}

#reservation p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing {
    text-align: center;
}

.pricing .price {
    font-family: var(--primary-font);
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.pricing .details {
    font-size: 1rem;
    color: var(--accent-color);
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

@media(max-width: 768px) {
    .details-grid, .bottom-gallery {
        grid-template-columns: 1fr;
    }
    .hero-title h1 {
        font-size: 2.5rem;
    }
    .hero-banner img {
        height: 300px;
    }
}