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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2c2c2c;
    background-color: #faf9f6; /* Warm, luxury neutral background */
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Keeps the header floating above everything else */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #f0efe9;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.site-nav {
    display: flex;
    gap: 2.5rem;
}

.site-nav a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
    color: #111;
}

.book-btn {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #444;
}

/* Main Contact Section */
.contact-main {
    padding: 10rem 6% 7rem 6%; /* Increased top padding to account for fixed header */
    display: flex;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

/* Contact Info Column */
.contact-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid #e5e3db;
    padding-top: 2rem;
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.3rem;
}

.detail-item a {
    font-size: 1.05rem;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.detail-item p {
    font-size: 0.95rem;
    color: #444;
}

/* Contact Form Column */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #f0efe9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #dedcd2;
    border-radius: 0px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #333;
}

/* Footer */
.site-footer {
    background-color: #141414;
    color: #fff;
    padding: 5rem 6% 2.5rem 6%;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid #282828;
    padding-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
}

/* --- HOMEPAGE SPECIFIC STYLES --- */
.font-serif { 
    font-family: 'Cormorant Garamond', serif; 
}

.font-sans { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }

@keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

html {
    scroll-behavior: smooth;
}

/* Responsive design adjustments */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .site-nav {
        display: none;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}    font-weight: 600;
}

.site-nav {
    display: flex;
    gap: 2.5rem;
}

.site-nav a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
    color: #111;
}

.book-btn {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #444;
}

/* Main Contact Section */
.contact-main {
    padding: 10rem 6% 7rem 6%; /* Increased top padding to account for fixed header */
    display: flex;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

/* Contact Info Column */
.contact-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid #e5e3db;
    padding-top: 2rem;
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.3rem;
}

.detail-item a {
    font-size: 1.05rem;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.detail-item p {
    font-size: 0.95rem;
    color: #444;
}

/* Contact Form Column */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #f0efe9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #dedcd2;
    border-radius: 0px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #333;
}

/* Footer */
.site-footer {
    background-color: #141414;
    color: #fff;
    padding: 5rem 6% 2.5rem 6%;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid #282828;
    padding-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
}

/* --- HOMEPAGE SPECIFIC STYLES MOVED FROM HTML --- */
.font-serif { 
    font-family: 'Cormorant Garamond', serif; 
}

.font-sans { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }

@keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

html {
    scroll-behavior: smooth;
}

/* Responsive design adjustments */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .site-nav {
        display: none;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}
