@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');


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

body {
    font-family: 'Josefin Slab', sans-serif;
    background-color: #faf7e8;
    color: #3e764f;
    line-height: 1.6;
    font-weight: 400;
}

/* Container and Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.three-column {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(62, 118, 79, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 118, 79, 0.15);
}

/* Header Styles */
.header {
    background-color: #fbf6e6;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(62, 118, 79, 0.1);
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3e764f;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(62, 118, 79, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #5a8a6b;
    margin-bottom: 1rem;
}

/* Sections */
.about-section,
.rooms-section,
.contact-section {
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3e764f, #5a8a6b);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Room Cards */
.room-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    border: 2px solid rgba(62, 118, 79, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    border-color: rgba(62, 118, 79, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
}

img {
    max-width: 300px;
    height: auto;
    object-fit:cover;
}

/* Contact Information */
.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-link {
    color: #3e764f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #2d5a3d;
    border-bottom-color: #3e764f;
}

/* Botanical Flourishes */
.botanical-flourish {
    font-size: 2rem;
    opacity: 0.6;
    position: absolute;
}

.top-flourish {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-flourish {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.contact-flourish {
    bottom: 10px;
    right: 20px;
    font-size: 1.5rem;
}

.leaf-accent,
.flower-accent,
.botanical-accent {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.4;
    top: 15px;
    right: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(62, 118, 79, 0.1), rgba(62, 118, 79, 0.05));
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.footer-flourish {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.3;
}

.video-wrapper-vertical {
  position: relative;
  width: 90vw;            /* mobile fills nicely */
  max-width: 400px;       /* mobile cap */
  padding-bottom: 177.77%;/* 9:16 ratio */
  height: 0;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  flex: 0 0 auto;
}

.video-wrapper-vertical iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Make video bigger on laptops/desktops */
@media (min-width: 992px) {
  .video-wrapper-vertical { max-width: 820px; }  /* was 640px */
}
@media (min-width: 1600px) {
  .video-wrapper-vertical { max-width: 900px; }
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-item {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .grid-item {
        padding: 1rem;
    }
    
    .botanical-flourish {
        font-size: 1.5rem;
    }
    
    .contact-flourish {
        font-size: 1.2rem;
    }
}

/* Additional Modern Touches */
.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3e764f, #5a8a6b, #3e764f);
    border-radius: 15px 15px 0 0;
    opacity: 0.7;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.contact-link:focus {
    outline: 2px solid #3e764f;
    outline-offset: 2px;
    border-radius: 3px;
}