/* =========================
   EIRA — ULTRA LUXURY STYLE
   Black + Champagne Gold
========================= */

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

:root{
  --black:#0a0a0a;
  --soft-black:#111;
  --gold:#c6a94c;
  --gold-light:#f5e6b3;
  --gold-gradient:linear-gradient(90deg,#c6a94c,#fff3c4,#b8892d);
  --glass:rgba(255,255,255,0.03);
  --border:rgba(198,169,76,0.25);
}

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

body{
  font-family:'Montserrat',sans-serif;
  background:var(--black);
  color:#000;
  line-height:1.7;
}

/* =========================
   NAVIGATION
========================= */

.site-nav{
  background:rgba(0,0,0,0.85);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(15px);
}

.nav-inner{
  max-width:1200px;
  margin:auto;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-brand a{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
  letter-spacing:6px;
  background:var(--gold-gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-decoration:none;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#ddd;
  font-size:14px;
  letter-spacing:2px;
  transition: opacity 0.3s ease;
  position: relative;
}
/*.nav-links a.active {
  opacity: 1;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
}*/
.nav-links a.active {
  color: var(--gold-light);
  font-weight: 500;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.nav-links a:hover{
  color:var(--gold);
}

/* =========================
   HERO
========================= */

.hero{
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.75)),
             url('./images/Eiraug (2).webp') center/cover no-repeat;
}

.hero-inner h1{
  font-family:'Cormorant Garamond',serif;
  font-size:64px;
  font-weight:600;
  margin-bottom:15px;
  color: white;
}

.hero-eyebrow{
  letter-spacing:4px;
  font-size:13px;
  color:var(--gold);
  text-transform:uppercase;
}

.hero-link{
  display:inline-block;
  margin-top:25px;
  padding:12px 35px;
  border-radius:40px;
  background:var(--gold-gradient);
  color:#000;
  text-decoration:none;
  font-weight:500;
  transition:0.4s;
}

.hero-link:hover{
  transform:scale(1.05);
  box-shadow:0 0 35px rgba(198,169,76,0.5);
}
@media(max-width:768px){
  .hero{
    height:75vh;
  }
}
/* =========================
   SECTIONS
========================= */

section{
  max-width:1100px;
  margin:auto;
  padding:100px 20px;
}

h2{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  margin-bottom:20px;
  color: beige;
}

.luxe-label{
  display:block;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:10px;
}

h3{
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
  margin-bottom:10px;
}

p{
  color:#ccc;
  margin-bottom:20px;
}

/* =========================
   FEATURES & CARDS
========================= */

.feature,
.card{
  background:var(--glass);
  border:1px solid var(--border);
  padding:30px;
  margin-top:30px;
  border-radius:12px;
  transition:0.4s;
}

.feature:hover,
.card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(198,169,76,0.15);
}

/* =========================
   GALLERY
========================= */

/* =========================
   ULTRA LUXURY GALLERY
========================= */

#gallery {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
}

#gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 60px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(198, 169, 76, 0.5);
}

/* Masonry on smaller screens */
@media(max-width: 900px){
  .gallery-grid {
    column-count: 2;
  }
}

@media(max-width: 600px){
  .gallery-grid {
    column-count: 1;
  }
}

/* Lightbox styling */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(198,169,76,0.6);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 50px;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}


/* =========================
   FORMS
========================= */

form{
  margin-top:40px;
  display:grid;
  gap:15px;
}

input, select{
  padding:14px;
  background:#111;
  border:1px solid var(--border);
  color:#eee;
  border-radius:8px;
}

input:focus, select:focus{
  outline:none;
  border-color:var(--gold);
}

button{
  padding:14px;
  border:none;
  border-radius:40px;
  background:var(--gold-gradient);
  font-weight:500;
  cursor:pointer;
  transition:0.4s;
}

button:hover{
  transform:scale(1.03);
  box-shadow:0 0 30px rgba(198,169,76,0.5);
}

/* =========================
   LIGHTBOX
========================= 

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:0.4s;
}

.lightbox.open{
  opacity:1;
  visibility:visible;
}

.lightbox img{
  max-width:90%;
  max-height:80%;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:40px;
  right:60px;
  font-size:40px;
  color:var(--gold);
  cursor:pointer;
}*/

/* =========================
   FOOTER
========================= */

footer{
  text-align:center;
  padding:40px;
  font-size:13px;
  border-top:1px solid var(--border);
  color:#888;
  background:#000;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){
  .hero-inner h1{
    font-size:40px;
  }
  .nav-links{
    display:none;
  }
}

/* =====================
    new look
    =====================*/

/* ---- AFTER HERO FEATURE INTRO ---- */

.intro-highlight{
  background: linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.75)),
              url('./images/AP3.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
}

.intro-highlight h2{
  font-family:'Cormorant Garamond',serif;
  font-size:52px;
  color: var(--gold-light);
  margin-bottom:15px;
}

.intro-highlight p{
  font-size:18px;
  color:#eee;
  margin-bottom:30px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.btn-primary{
  display:inline-block;
  padding:14px 40px;
  background:var(--gold-gradient);
  color:#000;
  font-weight:500;
  border-radius:40px;
  text-decoration:none;
  font-size:16px;
  transition:0.4s ease;
}

.btn-primary:hover{
  transform:scale(1.05);
  box-shadow:0 0 35px rgba(198,169,76,0.4);
}

/* ---- FEATURE CARDS NEXT ---- */

.feature-blocks{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  padding:80px 20px;
  text-align:center;
}

.feature-card{
  background:var(--glass);
  border:1px solid var(--border);
  padding:40px 20px;
  border-radius:12px;
  transition:0.4s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 45px rgba(198,169,76,0.15);
}

.feature-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
  color:var(--gold-light);
  margin-bottom:12px;
}

.feature-card p{
  font-size:16px;
  color:#ddd;
}


/* =========================
   UNIVERSAL PAGE HERO
========================= */

.page-hero{
  height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  background-size:cover;
  background-position:center;
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.65)
  );
}

.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
}

.page-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  font-weight:600;
  margin-bottom:15px;
  color:#fff;
}

.page-hero p{
  font-size:18px;
  color:#ddd;
}

.hero-eyebrow{
  display:block;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  background:var(--gold-gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:15px;
}

/* =========================
   PAGE BACKGROUNDS
   (Different per page)
========================= */

.about-hero{
  background-image:url('./images/AP9.webp');
}

.experience-hero{
  background-image:url('./images/AP3.webp');
}

.seasons-hero{
  background-image:url('./images/AP1.webp');
}

.gallery-hero{
  background-image:url('./images/AP4.webp');
}

.inquiry-hero{
  background-image:url('./images/AP6.webp');
}

/* Responsive */

@media(max-width:768px){
  .page-hero{
    height:60vh;
  }

  .page-hero h1{
    font-size:38px;
  }
}

/*==================
  seasons
=====================*/

/* =========================
   MAGAZINE STYLE — SEASONS
========================= */
.seasons{
  max-width:1200px;
  margin:auto;
  padding:120px 20px;
}

.seasons h2{
  text-align:center;
  margin-bottom:80px;
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  color:#f5e6b3;
}

.season{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:140px;
}

.season:nth-child(even){
  grid-template-columns: 1fr 1.1fr;
}

.season-media img{
  width:100%;
  height:600px;
  object-fit:cover;
  border-radius:8px;
  transition:0.6s ease;
}

.season-media img:hover{
  transform:scale(1.03);
}

.season span{
  display:block;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:10px;
}

.season h3{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;
  margin-bottom:20px;
  color:var(--gold-light);
  position:relative;
}

.season h3::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  background:var(--gold-gradient);
  margin-top:15px;
}

.season p{
  font-size:17px;
  color:#ccc;
  max-width:500px;
}

/* MOBILE */
@media(max-width:900px){
  .season{
    grid-template-columns:1fr;
    gap:40px;
    margin-bottom:100px;
  }

  .season-media img{
    height:400px;
  }

  .season:nth-child(even) .season-media{
    order:0;
  }
}

/* Drop first letter */

.season p:first-of-type::first-letter{
  font-size:60px;
  font-family:'Cormorant Garamond',serif;
  color:var(--gold);
  float:left;
  line-height:1;
  margin-right:12px;
}

.season{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease-out;
}

.season.visible{
  opacity:1;
  transform:translateY(0);
}

/* MAP */

.residence-map{
  max-width:1100px;
  margin:auto;
  padding:100px 20px;
  text-align:center;
}

.residence-map h2{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  color:var(--gold-light);
  margin-bottom:20px;
}

.residence-map p{
  font-size:16px;
  color:#ccc;
  margin-bottom:40px;
}

.map-container{
  border:3px solid var(--gold);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(198,169,76,0.2);
}


/* toggle menu */

/* Hide toggle button on desktop */
.nav-toggle {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
    background: var(--gold-gradient);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
  }

  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #eee;
    font-size: 14px;
    letter-spacing: 1px;
  }
}



/* container */
/* Premium Section */
.premium-section{
    position:relative;
    padding:160px 8%;
    background:#0c0c0c;
    overflow:hidden;
}

.premium-section::before{
    content:'';
    position:absolute;
    width:180%;
    height:180%;
    background:radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 40%),
               radial-gradient(circle at 80% 70%, rgba(255,215,150,0.05), transparent 40%);
    animation:luxLight 15s linear infinite alternate;
}

@keyframes luxLight{
    0%{transform:translate(-10%,-10%) rotate(0deg);}
    100%{transform:translate(10%,10%) rotate(8deg);}
}

.premium-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    max-width:1300px;
    margin:auto;
}

/* Left Text */
.premium-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    background:linear-gradient(90deg,#c6a94c,#fff3c4,#b8892d);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:25px;
}

.premium-text p{
    font-size:16px;
    line-height:1.9;
    opacity:0.8;
    margin-bottom:30px;
}

.premium-btn{
    display:inline-block;
    padding:14px 38px;
    border-radius:40px;
    background:linear-gradient(90deg,#c6a94c,#fff3c4,#b8892d);
    color:#000;
    font-weight:500;
    text-decoration:none;
    transition:0.4s ease;
}

.premium-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 50px rgba(212,175,55,0.35);
}

/* Right Image */
.premium-image{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 40px 100px rgba(0,0,0,0.6);
}

.premium-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s ease;
}

.premium-image:hover img{
    transform:scale(1.08);
}

.premium-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Responsive */
@media(max-width:992px){
    .premium-container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .premium-text h2{
        font-size:36px;
    }
}

/* about section new */

/* Shared Section Structure */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 40px;
  text-align: center;
}

.luxe-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #9c8c6a;
}

.philosophy-section h2,
.residence-notes h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 60px;
}

/* Philosophy Cards */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.philo-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.philo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.philo-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: black;
}

.philo-card p {
  line-height: 1.7;
  color: #555;
}

/* Residence Note Cards */
.notes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.note-card {
  background: #faf9f6;
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.note-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.note-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: black;
}

.note-card p {
  margin: 8px 0;
  color: #666;
}

.residence-notes{
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
}

.philosophy-section{
    max-width: 1100px;
    margin: auto;
    padding: 0px 20px;
}
@media(max-width:992px){
  .residence-notes{
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
    margin-top: 0px;
}
}

/* experience */

.experience-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
  color: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.experience-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.experience-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: black;
}

.experience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-card li {
  margin-bottom: 10px;
  color: #666;
  font-size: 15px;
}

#tryme {
    width: 1000px;
    text-align: center;
}

@media(max-width:992px){
  #tryme {
    width: 100%;
  }
}

/* inquiry */

/* Cards Layout */
.cards, .notes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card, .note-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover, .note-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.card h3, .note-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.card p, .note-card p {
  color: #555;
  line-height: 1.7;
}

/* Form Styling */
.inquiry-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-form input, .inquiry-form select, .inquiry-form button {
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: white;
}

.inquiry-form button {
  background: #9c8c6a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.inquiry-form button:hover {
  background: #7e7052;
}

.form-note {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

.stay-options{
  margin-top: -200px;
}

.inquiry-form{
  margin-top: -100px;
}

/* Edits */
.hero-sub{
  font-size:18px;
  color:#ddd;
  margin-top:10px;
  letter-spacing:1px;
}
.lux-list{
  list-style:none;
  margin-top:20px;
}

.lux-list li{
  margin-bottom:12px;
  color:#ccc;
  position:relative;
  padding-left:18px;
}

.lux-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--gold);
}
.statement-section{
  padding:140px 20px;
  text-align:center;
  background:#000;
}

.statement-section h2{
  font-family:'Cormorant Garamond',serif;
  font-size:56px;
  color:var(--gold-light);
  line-height:1.2;
}
.final-cta{
  text-align:center;
  padding:160px 20px;
  background:linear-gradient(180deg,#0a0a0a,#000);
}

.final-cta h2{
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  margin-bottom:15px;
}

/* logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}


.nav-brand img {
  height: 22px;
  opacity: 0.9;
}

.nav-brand a {
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .nav-brand img {
    height: 20px;
  }
}

/* ===== Stable Gallery Video ===== */

.gallery-feature-video {
  width: 100%;
  padding: 0 8%;
  margin: 100px auto;
  display: flex;
  justify-content: center;
}

.gallery-video {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.gallery-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
} 
/* get intouch */
.contact-section {
  padding: 100px 20px;
  text-align: center;
  background: #f8f8f6;
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #9c8c6a;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-block h3 {
  margin-bottom: 15px;
  font-weight: 500;
  color: black;
}

.contact-block p {
  margin: 5px 0;
  font-size: 15px;
  color: black;
}

.contact-block a {
  text-decoration: none;
  color: black;
}