/* BASE */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: white;
  background-color: #000;
}

html {
  scroll-behavior: smooth;
}

/* HEADER */

.top-header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 25px;
  z-index: 3000;
}

.header-left {
  justify-self: start;
}

.header-logo {
  justify-self: center;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.cart-icon {
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* HAMBURGER */

.menu-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* DROPDOWN PANEL */

.dropdown-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  padding: 80px 25px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
  z-index: 5000;
}

.dropdown-panel.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* CLOSE BUTTON */

.close-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* MENU HEADINGS */

.dropdown-panel h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  margin-top: 25px;
  margin-bottom: 8px;
}

/* MENU LINKS */

.side-link {
  display: block;
  color: #ff1a1a;
  text-decoration: none;
  margin: 6px 0 14px;
}

.side-link:hover {
  color: white;
}

/* HERO */

.hero{
text-align:center;
padding:180px 20px 140px;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url("background.jpg") center/cover no-repeat;
border-radius:20px;
max-width:1200px;
margin:80px auto 40px;
box-shadow:0 40px 100px rgba(0,0,0,.7);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ff4d4d;
}

/* SECTIONS */

.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  border-radius: 20px;

  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url("background.jpg") center/cover no-repeat;
}

.section h2 {
  font-family: 'Playfair Display', serif;
}

.section p {
  color: #dddddd;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* BUTTON */

.btn{
background:linear-gradient(90deg,#7a0000,#ff1a1a);
color:white;
padding:16px 48px;
border-radius:40px;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:.3s;
box-shadow:0 10px 30px rgba(0,0,0,.6);
display:inline-block;
margin-top:20px;
max-width:280px;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 20px 40px rgba(0,0,0,.7);
}

/* GALLERY */

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

/* FAQ */

.faq-item {
  margin: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  cursor: pointer;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  transition: max-height 0.4s ease;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 10px;
}

/* Arrow animation */

.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* FOOTER */

footer {
  padding: 60px 20px;
  text-align: center;
  color: #999;
}

/* MOBILE */

.mobile-booking{
display:none;
}

.mobile-call{
display:none;
}

@media (max-width:900px){

.hero{
padding:120px 20px 100px;
}

/* BOOK BUTTON */

.mobile-booking{
display:block;
position:fixed;
bottom:0;
left:0;
width:100%;
background:linear-gradient(to right,#8b0000,#ff1a1a);
text-align:center;
padding:16px 0;
z-index:1000;
}

.mobile-booking a{
color:white;
text-decoration:none;
font-weight:600;
font-size:1rem;
}

/* CALL BUTTON */

.mobile-call{
display:block;
position:fixed;
bottom:56px;
left:0;
width:100%;
background:#000;
text-align:center;
padding:12px 0;
border-top:1px solid rgba(255,255,255,.1);
z-index:999;
}

.mobile-call a{
color:#ff1a1a;
text-decoration:none;
font-weight:600;
font-size:.95rem;
}

/* page spacing */

body{
padding-bottom:120px;
}

}

/* MONOGRAM LOGO */

.logo-monogram{
font-family:'Playfair Display',serif;
font-weight:700;
font-size:38px;
letter-spacing:1px;
text-decoration:none;
position:relative;
display:inline-block;
}

.logo-e{
color:white;
}

.logo-c{
color:#ff1a1a;
margin-left:-10px;
text-shadow:0 0 10px rgba(255,0,0,.6);
}

.logo-monogram:hover{
opacity:.85;
}
