* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #051937 0%, #12284a 35%, #0b3b4f 65%, #22030a 100%);
  color: #f5f5f5; /* Light text on dark royal/maroon background */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background-color: #050b16; /* dark header to match footer */
  border-bottom: 2px solid rgba(9, 46, 110, 0.55); /* Royal blue accent */
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #0b3b4f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: #CFA447; /* Golden heading text */
}

.brand-tagline {
  font-size: 0.8rem;
  color: #666666;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
  color: #f5f5f5; /* light text for dark header */
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0b3b4f; /* Royal blue underline */
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #092e6e, #800020); /* Royal blue to maroon */
  color: #fdf6e3;
  border-color: #CFA447; /* Gold border */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #061f4b, #5f0018);
  border-color: #f2c76b;
  color: #ffffff;
  text-decoration: none;
}

.btn-ghost {
  background-color: transparent;
  color: #e0f7f6;
  border-color: rgba(0, 150, 166, 0.7); /* turquoise */
}

.btn-ghost:hover {
  border-color: #CFA447; /* gold */
  background-color: rgba(4, 94, 106, 0.9);
}

.btn:active {
  transform: translateY(1px);
}

.hero {
  padding: 4.5rem 0 3.75rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #F2C76B; /* golden hero title */
}

.hero-subtitle {
  margin-bottom: 1.5rem;
  color: #c8e9ea; /* soft turquoise text */
}

.hero-attar-image {
  max-width: 190px;
  float: right;
  margin: 0 0 0.75rem 1.25rem;
  border-radius: 14px;
  border: 2px solid rgba(207, 164, 71, 0.9); /* gold border */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #777;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 260px;
  background: radial-gradient(circle at top, #0b3b4f, #800020 55%, #092e6e);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.hero-bottle {
  height: 140px;
  border-radius: 999px;
  background: #0b3b4f url("Signature Eau de Parfum.png") center/cover no-repeat; /* no overlay on picture */
  border: 2px solid #CFA447; /* gold border */
  margin-bottom: 1rem;
}

.hero-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #666;
}

.banner-section {
  padding: 1.5rem 0 0;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 150, 166, 0.75); /* turquoise border around banners */
}

.banner2-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.banner2-image {
  max-width: 560px;
}

.banner-with-copy {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
}

.banner-copy h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.banner-copy p {
  color: #4A2E1E;
}

.banner1-visual {
  display: flex;
  justify-content: center;
}

.banner4-layout {
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
}

.banner4-visual {
  display: flex;
  justify-content: center;
}

.banner4-image {
  width: 80%;
  max-width: 260px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.banner5-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.banner5-visual {
  display: flex;
  justify-content: center;
}

.banner5-image {
  max-width: 360px;
}

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background-color: #081529;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #F2C76B; /* golden section headings */
}

.section-intro {
  max-width: 640px;
  color: #e0f7f6;
  margin-bottom: 1.75rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.icon-card {
  background-color: #0b223d;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.card h3,
.icon-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #F2C76B;
}

.card p,
.icon-card p {
  font-size: 0.92rem;
  color: #d0dde8;
}

.card-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #00a6b8; /* turquoise */
  border-bottom: 1px solid rgba(0, 166, 184, 0.8);
}

.text-block p + p {
  margin-top: 0.75rem;
}

.text-block a {
  color: #fdf6e3;
  border-bottom: 1px solid rgba(207, 164, 71, 0.9);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: #d0dde8;
}

.faq-cta {
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid rgba(207, 164, 71, 0.5);
  background-color: #050b16;
  padding: 1.25rem 0;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-text {
  font-size: 0.85rem;
  color: #d0dde8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: #f5f5f5;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}

.footer-meta a {
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 2.5rem 0 2.25rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
