@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1A365D; /* Deep Navy Blue */
  --secondary: #E67E22; /* Camogli sunset orange */
  --light: #F8FAFC;
  --dark: #1E293B;
  --text-main: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background: var(--light); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh;}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* Navbar */
.navbar { background: linear-gradient(90deg, #EBF8FF 0%, var(--primary) 20%, var(--primary) 80%, #EBF8FF 100%); padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: flex; justify-content: center; gap: 2rem;}
.navbar a { color: #fff; font-weight: 500; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 1.5px; padding: 0.7rem 1.2rem; border-radius: 4px; }
.navbar a:hover, .navbar a.active { background: var(--secondary); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);}

/* Header Banner */
.brand-header { text-align: center; background: #fff; padding: 1.5rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.brand-header img { max-width: 100%; height: auto; max-width: 500px; }

/* Main Container */
main { flex: 1; }
.container { max-width: 1100px; margin: 4rem auto; padding: 0 2rem; }

/* Home Layout */
.home-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.home-image { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transition: transform 0.4s ease; }
.home-image:hover { transform: translateY(-10px); }
.home-image img { width: 100%; height: auto; display: block; object-fit: cover;}
.home-content h1 { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.home-content p { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--text-muted); }
.home-content strong { color: var(--primary); }
.home-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.home-content ul li { margin-bottom: 0.5rem; color: var(--text-muted);}

/* Features tags */
.features-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2.5rem; }
.feature-tag { background: #e2e8f0; color: var(--dark); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; }

/* Page Titles */
.page-title { text-align: center; margin-bottom: 3rem;}
.page-title h1 { font-size: 3rem; margin-bottom: 1rem;}
.page-title p { color: var(--text-muted); font-size: 1.1rem;}

/* Cards Grid for Rooms/Prices */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.card-img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 2rem; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.card-content p { color: var(--text-muted); margin-bottom: 1rem;}

/* Photo Grid */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.photo-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.photo-grid img:hover { transform: scale(1.02); }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;}
.contact-info { background: #fff; padding: 3rem; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);}
.contact-info h2 { margin-bottom: 1.5rem;}
.contact-info p { font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;}
.contact-map { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-map h3 { font-size: 1.3rem; margin-bottom: -0.5rem; }
.contact-map iframe { width: 100%; height: 350px; border: 0; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

/* Text Blocks */
.content-block { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 2rem; }
.content-block h2 { margin-bottom: 1rem; }

/* Footer */
footer { background: var(--dark); color: #cbd5e1; text-align: center; padding: 4rem 2rem 3rem; margin-top: auto; }
.footer-content { max-width: 800px; margin: 0 auto; }
.footer-contact { font-size: 1.2rem; margin-bottom: 1.5rem; color: #fff; }
.footer-contact a { color: var(--secondary); }
.footer-contact a:hover { color: #fff;}
.footer-codes { display: inline-flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);}
.code-badge { background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 6px; font-family: monospace; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.1);}

/* Lightbox Styles */
.lightbox {
  position: fixed; z-index: 9999;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s ease; }
.lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 3rem; font-weight: bold; cursor: pointer; }
.photo-grid img, .card-img { cursor: zoom-in; }

@media (max-width: 768px) {
  .home-layout, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .navbar { flex-direction: column; padding: 0.5rem; gap: 0.2rem; justify-content: center; background: var(--primary); }
  .navbar a { width: 100%; text-align: center; font-size: 0.9rem; padding: 0.5rem; letter-spacing: 1px; }
  .home-content h1, .page-title h1 { font-size: 2rem; }
  .container { margin: 1.5rem auto; padding: 0 1rem; }
  .brand-header img { max-width: 90%; }
  .photo-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 280px; }
  footer { padding: 2.5rem 1rem 2rem; }
  .footer-contact { font-size: 1rem; }
}
