:root {
    --gold: #d0b084;
    --dark: #1a1a1a;
    --light: #f9f9f9;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: var(--dark);
    line-height: 1.6;
}

h1 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a	{
	background: url(/img/logo.png) center center no-repeat;
	background-size: contain;
	height: 50px;
	text-indent: -10000px;
	transition: none;
    display: block;
}

.container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px 60px;
}

/* Header */
.navbar {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: rgba(255,255,255,.75);
}

.btn-book {
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

/* Sandwich Icon Styling */
.menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

/* Sidebar Navigation Drawer */
.drawer {
    height: 100%;
    width: 0; /* Hidden by default */
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    background-color: var(--dark);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.drawer a {
    padding: 15px 32px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    transition: 0.3s;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.drawer a:hover {
    color: var(--gold);
}

.drawer .closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
    margin-left: 50px;
}

/* Style the dropdown buttons */
.dropdown-btn {
    padding: 15px 32px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    border: none;
    background: none;
    /*width: 100%;*/
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: 'Playfair Display', serif;
    transition: 0.3s;
    position: absolute;
    right: 0;
    margin-top: -60px;
}

/* Dropdown container (hidden by default) */
.dropdown-container {
    display: none;
    background-color: #262626; /* Slightly lighter than the drawer */
    padding-left: 20px;
}

.dropdown-container a {
    font-size: 1rem;
    padding: 10px 32px;
    text-transform: uppercase;
}

/* Optional: Add a caret icon rotation or color change */
.active-dropdown {
    color: var(--gold);
}

/* Layout adjustments for Header */
.navbar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Equal parts for perfect centering */
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
}

.nav-center { text-align: center; }
.nav-right { text-align: right; }

/* Hero */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 { font-size: 4rem; margin: 0; }

/* Video Section */
#video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    margin-bottom: 30px;
}
#video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0); /* Semi-transparent overlay */
}

/* Grids */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Default to 4 columns */
    gap: 30px;
}
#rooms-section .grid { 
    grid-template-columns: 1fr 1fr 1fr; 
}
.card img {
    width: 100%;
    height: auto;
}

.card-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.card-links a {
    text-transform: uppercase;
}

.exp-card {
    height: 250px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #e0d6c5;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

form input, form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
}

/* Intro Flex Layout */
.intro-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-image {
    align-self: baseline;
    flex: 1; 
}
.intro-image img { width: 100%; border-radius: 4px; }
.intro-text { flex: 1; }

.section-title {
    text-align: center;
    margin: 10px 0 20px;
}

/* Map Section */
.location-map {
    padding: 0;
    background: #fff;
    text-align: center;
}
.map-container { 
    width: 100%;
    height: 450px;
    background: #eee;
}

/* Upper Contact Footer */
.contact-section {
    background-color: #f4f1ec; /* Light beige from image */
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: transparent;
}

.contact-form button {
    background: #333;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
}
 
.social-icons a {
    background-color: var(--dark);
    color: var(--light);
}

/* Bottom Brand Footer */
.brand-footer {
    background-color: #d1bc96; /* The darker gold/tan footer */
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.footer-image { flex: 1; text-align: center; }
.footer-image img {  }
.footer-text { flex: 1; }


/* Dark Brand Footer */
.filoxenia-footer {
    background-color: var(--gold); /* The dark charcoal from your image */
    color: var(--dark);
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Logo Styling */
.script-logo {
    font-family: 'Mrs Saint Delafield', cursive; /* A script font similar to the image */
    font-size: 3.5rem;
    margin: 0;
    font-weight: 400;
}

.sub-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-top: -10px;
    letter-spacing: 1px;
}

/* Contact List */
.footer-contact-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-contact-list p {
    margin: 8px 0;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-circle {
    background-color: #ffffff;
    color: #2c2c2c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-circle:hover {
    opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Mobile Responsiveness for Intro and Footer */
@media (max-width: 768px) {
    .intro-flex, .footer-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    #rooms-section .grid,
    .grid {
        grid-template-columns: 1fr;
    }
    
    #content {
        margin-top: 80px;
    }
}

