/* Your existing CSS with your blue color theme */

:root {
  --navy-blue: #1a237e;
  --royal-blue: #3f51b5;
  --steel-blue: #607d8b;
  --sky-blue: #87ceeb;
  --pastel-blue: #e3f2fd;
  --light-blue: #bbdefb;
  --deep-blue: #0d47a1;
  --midnight-blue: #0c1445;

  --pure-white: #ffffff;
  --off-white: #fafbfc;
  --light-gray: #f5f7fa;
  --medium-gray: #90a4ae;
  --dark-gray: #37474f;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* -- Mapping your luxury colors to blue theme -- */
/* --luxury-gold: map to --royal-blue */
/* --luxury-charcoal: map to --midnight-blue */
/* --luxury-pearl: map to --pastel-blue */
/* --luxury-black: map to --navy-blue */
/* --luxury-white: map to --pure-white */
/* --luxury-accent: map to --sky-blue */


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background-color: var(--pure-white);  /* was luxury-white */
  color: var(--midnight-blue);          /* was luxury-charcoal */
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

header {
  background: var(--midnight-blue);     /* was luxury-charcoal */
  padding: 1rem 0;
  color: var(--pastel-blue);             /* was luxury-pearl */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--royal-blue);              /* was luxury-gold */
}

.logo span {
  color: var(--pastel-blue);             /* was luxury-pearl */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--pastel-blue);             /* was luxury-pearl */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--royal-blue);              /* was luxury-gold */
}

main h1, main h2, main h3 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
}

.section-intro {
  font-family: 'Lora', serif;
  color: var(--midnight-blue);           /* was luxury-charcoal */
  margin-bottom: 2rem;
}

/* Gallery styles */
.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.gallery img {
  border-radius: 8px;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Big featured image */
.featured-image {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 2rem;
  background: var(--pastel-blue);        /* was luxury-pearl */
  padding: 1rem;
  box-shadow: 0 6px 15px rgba(26, 35, 126, 0.1); /* adapted shadow for blue */
}

/* Section styles */
section {
  margin-bottom: 3rem;
}

ul {
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.6rem;
  font-family: var(--font-primary);
}

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}

table th, table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--royal-blue);   /* was luxury-pearl */
  font-family: var(--font-primary);
}

table th {
  background-color: var(--sky-blue);             /* was luxury-gold */
  color: var(--navy-blue);                          /* was luxury-black */
}

/* Inquiry button */
.btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
  user-select: none;
  border: none;
}

.btn-primary {
  background-color: var(--sky-blue);         /* was luxury-gold */
  color: var(--navy-blue);                      /* was luxury-black */
}

.btn-primary:hover {
  background-color: var(--royal-blue);  
  color: white;         /* was luxury-accent */
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 35, 126, 0.6);            /* was black 0.6 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--pure-white);                /* was luxury-white */
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3); /* adapted shadow */
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
  color: var(--midnight-blue);                   /* was luxury-charcoal */
}

.modal-content label {
  display: block;
  margin: 0.8rem 0 0.3rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--midnight-blue);                   /* was luxury-charcoal */
}

.modal-content input, 
.modal-content textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--midnight-blue);       /* was luxury-charcoal */
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  resize: vertical;
}

.modal-content textarea {
  min-height: 100px;
}

.modal-content button {
  margin-top: 1.5rem;
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--steel-blue);                   /* was luxury-charcoal */
  border: none;
  background: transparent;
}

@media (max-width: 768px) {
  .gallery img {
    height: 150px;
  }
  .featured-image {
    max-height: 250px;
  }
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Container fixed vertically on right center */
.vertical-contact-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1100;
  padding: 8px;
  background: transparent;
}

/* Common styles for all buttons */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Hover effect */
.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Green button */
.contact-btn.whatsapp {
  background-color: #28a745; /* Bootstrap Green */
  border-color: #218838;
}

.contact-btn.whatsapp:hover {
  background-color: #218838;
}

/* Blue button */
.contact-btn.phone {
  background-color: #007bff; /* Bootstrap Blue */
  border-color: #0056b3;
}

.contact-btn.phone:hover {
  background-color: #0056b3;
}

/* Red button */
.contact-btn.email {
  background-color: #dc3545; /* Bootstrap Red */
  border-color: #a71d2a;
}

.contact-btn.email:hover {
  background-color: #a71d2a;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .vertical-contact-bar {
    right: 10px;
    gap: 12px;
  }
  .contact-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
