/*
Theme Name: Global Tea Exchange
Theme URI: https://globaltea-uteh6ehm.manus.space
Description: A royal-themed landing page for The Global Tea Exchange event with gold, beige, and white aesthetic. Features a contemporary royal salon design with chapel doorway imagery and tea ceremony elements.
Version: 1.0.0
Author: Global Tea Exchange
Author URI: https://globaltea-uteh6ehm.manus.space
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-tea-exchange
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: #d0aa58;
  outline-color: rgba(0, 0, 0, 0.2);
}

html, body {
  height: 100%;
}

body {
  background-color: #fbf6ea;
  color: #382815;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #2f210f;
}

h2 {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #30200e;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #33230f;
}

p {
  margin-bottom: 1rem;
  color: #4d3a20;
}

a {
  color: #b88a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9d731f;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #fbf6ea;
  border-bottom: 1px solid rgba(214, 180, 106, 0.4);
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6f531f;
  margin: 0;
}

.site-branding a {
  color: #6f531f;
  text-decoration: none;
}

.main-navigation {
  display: none;
}

.main-navigation a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #6f531f;
  border-bottom: 1px solid #b98b2f;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #2f210f;
}

@media (min-width: 640px) {
  .main-navigation {
    display: block;
  }
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  border-bottom: 1px solid rgba(214, 180, 106, 0.4);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 248, 235, 0.95), rgba(255, 248, 235, 0.78), rgba(255, 248, 235, 0.18));
  z-index: -1;
}

.hero-borders {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-border-outer {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 159, 69, 0.45);
}

.hero-border-inner {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 96px);
  padding: 4rem 0;
}

.hero-text {
  max-width: 48rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(202, 163, 80, 0.6);
  background-color: rgba(255, 255, 255, 0.55);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #7c5b1f;
  box-shadow: 0 18px 60px rgba(82, 58, 18, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #2f210f;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-tagline {
  font-family: 'Georgia', serif;
  font-size: 1.875rem;
  font-style: italic;
  line-height: 1.4;
  color: #7c5b1f;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-tagline {
    font-size: 2.25rem;
  }
}

.hero-description {
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2;
  color: #4d3a20;
  margin-bottom: 2.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  border: 1px solid #9e7422;
  background-color: #b88a2e;
  color: white;
  box-shadow: 0 18px 35px rgba(111, 75, 18, 0.22);
}

.btn-primary:hover {
  background-color: #9d731f;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #b88a2e;
  background-color: rgba(255, 255, 255, 0.7);
  color: #6f4f16;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: #fff4d8;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

/* ============================================
   EVENT INFO CARDS
   ============================================ */

.event-info-section {
  position: relative;
  padding: 4rem 0;
}

.event-info-background {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.event-info-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-card {
  border: 1px solid rgba(208, 170, 88, 0.6);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(68, 42, 9, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-card-icon {
  width: 2rem;
  height: 2rem;
  color: #af8128;
  margin-bottom: 1.5rem;
}

.event-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #89641f;
  margin-bottom: 0.75rem;
}

.event-card-title {
  font-size: 2rem;
  color: #342410;
  margin-bottom: 0.5rem;
}

.event-card-subtitle {
  font-size: 1.125rem;
  color: #6d5632;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  padding: 6rem 0;
}

.section-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

.section-image {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .section-image {
    margin: 0;
  }
}

.section-image-border {
  position: absolute;
  inset: -1.25rem;
  border: 1px solid rgba(197, 154, 58, 0.55);
}

.section-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(72, 45, 10, 0.18);
}

.section-content h2 {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .section-content h2 {
    font-size: 3.75rem;
  }
}

.section-content p {
  margin-top: 1.75rem;
  max-width: 48rem;
  font-size: 1.25rem;
  line-height: 2.25;
  color: #5b4728;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #9a721f;
}

/* ============================================
   PROGRAM MOMENTS
   ============================================ */

.program-moments {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2.5rem;
}

.moment-card {
  border-left: 1px solid #c49a3e;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(65, 39, 8, 0.07);
  transition: all 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-4px);
  background-color: white;
}

.moment-number {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: #b7892b;
  margin-bottom: 1rem;
}

.moment-title {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #33230f;
  margin-bottom: 0.75rem;
}

.moment-text {
  line-height: 1.75;
  color: #604b2b;
}

/* ============================================
   ROUTE SECTION
   ============================================ */

.route-section {
  border-top: 1px solid rgba(210, 173, 93, 0.5);
  border-bottom: 1px solid rgba(210, 173, 93, 0.5);
  background-color: #fffaf0;
  padding: 6rem 0;
}

.route-header {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .route-header {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: flex-end;
  }
}

.route-image {
  overflow: hidden;
  border: 1px solid rgba(197, 154, 58, 0.5);
  background-color: white;
  box-shadow: 0 30px 90px rgba(72, 45, 10, 0.12);
  margin-top: 3rem;
}

.route-image img {
  width: 100%;
  object-fit: cover;
}

.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.country-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(184, 138, 46, 0.1);
  border: 1px solid #b88a2e;
  color: #6f4f16;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: slideIn 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 6rem 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 154, 58, 0.6);
  background-color: #3c2912;
  padding: 2rem;
  box-shadow: 0 35px 110px rgba(59, 38, 11, 0.22);
}

@media (min-width: 640px) {
  .cta-box {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 4rem;
  }
}

.cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .cta-content {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cta-text h2 {
  color: white;
  margin-top: 1.25rem;
}

.cta-text p {
  color: #fff2d2;
  margin-top: 1.5rem;
}

.cta-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #f0d58a;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cta-buttons {
    flex-direction: column;
  }
}

.cta-btn-primary {
  border: 1px solid #f0d58a;
  background-color: #f0d58a;
  color: #39250e;
}

.cta-btn-primary:hover {
  background-color: white;
}

.cta-btn-secondary {
  border: 1px solid #f0d58a;
  background-color: transparent;
  color: #fff6dd;
}

.cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

footer {
  border-top: 1px solid rgba(210, 173, 93, 0.5);
  background-color: white;
  padding: 2.5rem 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6d5632;
}

@media (min-width: 640px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-branding h2 {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #342410;
  margin: 0;
}

.footer-info {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

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

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .section-content h2 {
    font-size: 2rem;
  }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

.wp-block-image {
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Gutenberg Editor Styles */
.wp-block-button__link {
  padding: 0.875rem 2rem;
  background-color: #b88a2e;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
}

.wp-block-button__link:hover {
  background-color: #9d731f;
}

.wp-block-quote {
  border-left: 4px solid #b88a2e;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #7c5b1f;
}
