/* ══════════════════════════════════════════
   REVELRY CREATIVE EVENTS — style.css
   Shared across all pages
══════════════════════════════════════════ */

/* ── LOCAL FONTS ── */
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./fonts/BeVietnamPro-ExtraLight.ttf") format("truetype");
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Tan Ashford";
  src: url("./fonts/tan_-_ashford-webfont.woff") format("woff");
  font-weight: 100; font-style: normal; font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}



/* ── DESIGN TOKENS ── */
:root {
  --gold:         #F2C11E;
  --magenta:      #d90468;
  --magenta-dark: #a01256;
  --purple:       #2B163F;
  --purple-2:     #1F102F;
  --purple-mid:   #2b192e;
  --berry:        #820263;
  --cream:        #FAF7F0;
  --dark:         #2b192e;
  --white:        #ffffff;
  --light-blue:   #c3d7f0;
  --card-bg:      #E8E6EA;
  --content:      980px;
  --font-display: 'Tan Ashford', serif;
  --font-accent:  'Tan Ashford', serif;
  --font-body:    'Be Vietnam Pro', sans-serif;
}

/* ── PAGE WRAPPER ── */
.page {
  width: 100%;
  margin: 0;
  background: transparent;
}
.container { max-width: 100%; margin: 0 auto; padding: 0 40px; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple-2);
  border-bottom: 2px solid var(--berry);
}
.nav-inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.nav-logo {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-logo span {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--light-blue);
  display: block;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-blue);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--magenta-dark) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--light-blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown Button */
/* .dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
} */

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--purple-2);
  z-index: 1;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {color: var(--gold);}

.dropdown:hover .dropdown-content {display: block;}

/* ════════════════════════════════════════
   SITE HEADER (images)
════════════════════════════════════════ */
.site-header {
  padding: 26px 0 18px;
  background: var(--gold);
}
.header-logo {
  display: block;
  width: min(900px, 100%);
  height: auto;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   INTRO SECTION
════════════════════════════════════════ */
.intro {
  width:100%;
  line-height: 0;;
}
.intro-hero {
  position: relative;
  width: 100%;
}
.intro-img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-heading {
  position: absolute;
  bottom: 5%;        /* adjust this to move it up/down */
  left: 40px;       /* adjust for horizontal position */
  font-family: var(--font-accent);
  font-size: 70px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin: 0;
}
.intro-text-inner p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  padding: 30px;
  letter-spacing: 0.05em;
}
.intro-text-inner {
  background: rgba(30, 146, 195, 0.45);
  background-size: cover;
  border-radius: 3px;
}

 /* .intro-right {
  display: flex;
  flex-direction: column;
}
.intro-right .parallax-wrap {
  flex: 1;
  overflow: hidden;
}
.intro-right .photo {
  height: 100%;
  background: var(--purple) url('./above.jpg') center 40% / cover no-repeat;
} */


/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services {
  background: #2b192e;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.services .container { position: relative; z-index: 1; }
.services-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  align-items: center;
}
.services-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 50px;
  color: var(--light-blue);
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding: 10px 80px;
}
.services-cards-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px;
}
.services-cards-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./Flowers.png');
  background-size: cover;
  background-position: right;
  opacity: 0.42;
  z-index: 0;
  transform: scale(1.04);
}
.service-cards { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; width: 95%; }
.service-card {
  background: var(--light-blue);
  padding: 20px 15px;
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.15);
  align-items: center;
}
.service-icon-img { width: 90px; height: 90px; object-fit: cover; }
.service-card h3 {
  font-size: 25px;
  color: #2a2230;
  margin-bottom: 2px;
  letter-spacing: 0.08em;
  line-height: 2;
}
.service-card p { 
  font-size: 20px; 
  color: rgba(0,0,0,0.65); 
  line-height: 1.5; }

/* ════════════════════════════════════════
   PHILOSOPHY
════════════════════════════════════════ */
.philosophy {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 300px;
}
.philosophy-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.philosophy-image .photo {
  flex: 1;
  background: var(--dark) url('./dancingflatt.jpg') center 55% / cover no-repeat;
  min-height: 500px;
}
.philosophy-image .quote-overlay {
  background: var(--light-blue);
  padding: 30px 22px;
  flex-shrink: 0;
}
.philosophy-image .quote-overlay p {
  font-family: var(--font-accent);
  font-size: 22px;
  color: #2b192e;
  line-height: 1.4;
  text-align: center;
}
.philosophy-text {
  background: #d90468;
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light-blue);
  line-height: 1.4;
}
.philosophy-text-inner {
  background: rgba(0, 0, 0, 0.45);
  padding: 32px 36px;
  border-radius: 3px;
}
.philosophy-text h2 {
  font-family: var(--font-accent);
  font-size: 34px;
  color: var(--light-blue);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  line-height: 1.4;
}
.philosophy-text p { font-size: 20px; font-weight: 200; line-height: 1.75; margin-bottom: 16px; }

/* ════════════════════════════════════════
   VALUE PROPS STRIP
════════════════════════════════════════ */
.value-strip {
  background: var(--gold);
  padding: 34px 20px 26px;
  text-align: center;
}
.value-strip p.intro-line {
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 32px;
  font-weight: 200;
  letter-spacing: 0.02em;
}
.value-props {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-evenly;
  justify-self: center;
  gap: 100px;
  padding: 10px;
}
.value-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 160px;
}
.value-icon { 
  width: 100px; 
  height: 100px; 
justify-self: center;
margin-bottom: 20px;
}
.value-prop p {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   PRICING PAGE
════════════════════════════════════════ */
.pricing-hero {
  background: var(--purple-mid);
  padding: 60px 0px 20px;
}
.pricing-hero h1 {
  font-family: var(--font-accent);
  font-size: 23px;
  color: var(--light-blue);
  letter-spacing: 0.13em;
  margin-bottom: 0px;
}
.pricing {
  background: var(--purple-mid);
  padding: 30px 40px 20px;
}
.pricing-hero h2 {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light-blue);
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.13em;

  font-weight: lighter;
  line-height: 1.3;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.pricing-card { 
  padding: 20px 60px 20px;
}
/* .pricing-card-inner {
  padding: 30px 60px 20px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 3px;
  background-size: 400px;
} */
.pricing-card.full-width { 
  display: grid;
  grid-column: 1; 
  border: none; 
  justify-content: center;
}
.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 24px;
  letter-spacing: .113em;
  color: var(--light-blue);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: lighter;
}
.pricing-card .price {
  font-weight: bold;
  font-size: 18px;
  color: var(--light-blue);
  margin-bottom: 16px;
}
.includes-label {
  font-size: 18px;
  color: var(--light-blue);
  margin-bottom: 18px;
}
.includes-label-dark {
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 10px;
}
.pricing-card ul { list-style: none; padding: 0; }
.pricing-card ul li {
  font-size: 18px;
  color: var(--light-blue);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--light-blue);
}
.two-column-list {
  column-count: 2;
  column-gap: 10px;
}
.full-service {
  background: var(--gold);
  padding: 20px 40px 20px;
}
.pricing-card.full-width h3 { 
  color: #2b192e; 
  font-size: 24;
  display: inline-block; 
  margin-bottom: 15px; 
  letter-spacing: 5;
}
.pricing-card.full-width .price { color: #2b192e; }
.pricing-card.full-width ul li { 
  color: #2b192e;
  font-size: 18px;
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5; }
.pricing-card.full-width ul li::before { color: #2b192e; }
.pricing-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  background-color: var(--light-blue);
  padding: 10px;
}
.corporate {
  background: var(--light-blue);
  padding: 10px;
}
.specialevents-hero {
  background: var(--gold);
  padding: 60px 40px 30px;
}
.specialevents-hero h1 {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--purple);
  letter-spacing: 0.13em;
  margin-bottom: 6px;
  text-align: center;
}
.specialevents-hero p {
  color: var(--purple);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
.pricing-card.corporate {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
.pricing-card.corporate p {
  color: var(--purple);
  font-weight: 200;
  letter-spacing: 0.34em;
  font-size: 20px;
  text-transform: uppercase;
}
.pricing-card.corporate span {
  color: var(--purple);
  font-size: 15px;
  letter-spacing: 0.1em;
  font-style: italic;
}

/* ── pricing page CTA ── */
.pricing-cta {
  background: var(--berry);
  padding: 50px 40px;
  text-align: center;
}
.pricing-cta p {
  color: var(--light-blue);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 200;
  letter-spacing: 0.04em;
}
.btn-primary {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-1px); }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-page {
  background: linear-gradient(180deg, var(--purple-2) 0%, #140b1f 100%);
  min-height: 80vh;
  padding: 70px 40px;
}
.contact-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left h1 {
  font-family: var(--font-accent);
  font-size: clamp(40px, 7vw, 64px);
  color: var(--light-blue);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-left p {
  color: var(--light-blue);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.85;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.contact-details .detail-row { display: flex; gap: 10px; align-items: baseline; }
.contact-details .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  min-width: 58px;
}
.contact-details .value { font-size: 14px; color: var(--white); }
.contact-details a { color: var(--white); text-decoration: none; }
.contact-details a:hover { color: var(--gold); }

/* ── FORM ── */
.contact-form {
  background: #E6E3EA;
  padding: 36px;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--magenta); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: var(--magenta-dark); }
.btn-submit:active { transform: scale(0.98); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid #4caf50;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}
.form-error {
  display: none;
  background: #fce4ec;
  border: 1.5px solid var(--magenta);
  border-radius: 4px;
  padding: 12px;
  text-align: center;
  color: var(--magenta);
  font-size: 14px;
  margin-top: 12px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--dark);
  text-align: center;
  padding: 26px 20px;
  font-size: 12px;
  color: #666;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-sub { margin-top: 6px; font-size: 11px; color: #444; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 780px) {
  .page { width: 100%; }
  .container { padding: 0 16px; }

  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 58px; left: 0; right: 0; background: var(--purple-2); padding: 12px 0; border-bottom: 2px solid var(--berry); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 13px; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative;}

  .services-inner,
  .philosophy,
  .contact-inner { grid-template-columns: 1fr; }

  .value-props { grid-template-columns: 1fr; gap: 24px; }
  .value-prop { max-width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.full-width,
  .pricing-card.corporate { grid-column: 1; }
  .pricing-card.full-width ul { column-count: 1 !important; }
  .pricing-card.corporate { gap: 20px; flex-direction: column; text-align: center; }
  .intro-heading {
    font-size: 30px;
    padding-bottom: 0%;
  }
 
  .services-title { padding: 30px 20px; text-align: left; }
  .services-cards-wrap { padding: 18px 14px;}
  .service-card {grid-template-columns: 1fr;}
  .philosophy-image { min-height: 300px; }
  .contact-form { padding: 24px; }
  .pricing { padding: 10px 16px; }
  .full-service { padding: 20px 16px; }
}
/* ════════════════════════════════════════
   ANIMATIONS — added block, nothing else changed
════════════════════════════════════════ */
 
/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right { transition: none !important; }
}
 
/* Hidden state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.reveal--left  { transform: translateX(-36px); }
.reveal.reveal--right { transform: translateX(36px); }
 
/* Visible state — added by JS */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
 
/* Stagger delays for children that get .reveal individually */
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.15s; }
.reveal-d3 { transition-delay: 0.25s; }
 
/* Page-load: header logo */
.site-header .header-logo {
  animation: revealDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes revealDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
 
/* Page-load: hero headings */
.pricing-hero h1,
.specialevents-hero h1 {
  animation: revealUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pricing-hero p,
.specialevents-hero p {
  animation: revealUp 0.75s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
 
/* Card hover lift — only adds transform/box-shadow transition */
.service-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.30);
}
 
/* Value icon bob on hover */
.value-prop .value-icon {
  transition: transform 0.3s ease;
}
.value-prop:hover .value-icon {
  transform: translateY(-6px);
}
 
/* Parallax wrapper — overflow hidden so panned photo doesn't bleed */
.parallax-wrap {
  overflow: hidden;
}
.parallax-inner {
  will-change: transform;
  scale: 1.15;
  transform-origin: center center;
}