/* VARAAZ ARTS — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #F5A623;
  --plum: #1C3D8A;
  --cream: #F9F9FF;
  --dark: #2C2C2C;
  --light-grey: #EEF2FA;
  --mid-grey: #888;
  --border: #D0D9F0;
}

body {
  font-family: 'Lato', 'Arial', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.9;
}

h1, h2, h3, blockquote {
  font-family: 'Georgia', serif;
}

/* NAV */
nav {
  background-color: var(--plum);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #EEE;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  background-color: var(--plum);
  color: white;
  padding: 100px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  color: white;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 1.15rem;
  color: #DDD;
  max-width: 660px;
  margin: 0 auto 16px;
}

.hero .tagline {
  color: var(--gold);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--plum);
  padding: 14px 32px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 8px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background-color: #b8943e;
  color: white;
}

.btn-outline {
  background-color: var(--gold);
  border: 2px solid var(--gold);
  color: var(--plum);
}

.btn-outline:hover {
  background-color: #b8943e;
  border-color: #b8943e;
  color: white;
}

/* AWARDS STRIP */
.awards-strip {
  background-color: #142D6E;
  padding: 40px 60px;
  text-align: center;
}

.awards-strip h2 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Arial', sans-serif;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.award-item {
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #EEE;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: left;
  min-width: 200px;
  max-width: 280px;
}

.award-item span {
  color: var(--gold);
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

/* SECTIONS */
section {
  padding: 70px 60px;
  max-width: 960px;
  margin: 0 auto;
}

section.full-width {
  max-width: 100%;
  background-color: var(--light-grey);
  padding: 70px 60px;
}

section.full-width .inner {
  max-width: 960px;
  margin: 0 auto;
}

h2 {
  font-size: 1.8rem;
  color: var(--plum);
  margin-bottom: 24px;
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  color: var(--plum);
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

/* DIVIDER */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
}

.card h3 {
  color: var(--plum);
  margin-bottom: 8px;
}

.card .subtitle {
  color: var(--gold);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.97rem;
  color: #555;
}

/* TESTIMONIALS */
.testimonial {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin-bottom: 28px;
  background: white;
  border-radius: 0 4px 4px 0;
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 8px;
}

.testimonial .author {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--plum);
  font-style: normal;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.97rem;
}

th {
  background-color: var(--plum);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

tr:nth-child(even) {
  background-color: var(--light-grey);
}

/* QUOTE BLOCK */
blockquote {
  background-color: var(--plum);
  color: white;
  padding: 28px 36px;
  border-radius: 4px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

blockquote .quote-author {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  font-family: 'Arial', sans-serif;
}

/* BADGE */
.badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--plum);
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CALLOUT BOX */
.callout {
  background-color: #EEF2FA;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 20px 0;
}

.callout p {
  margin: 0;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background-color: var(--plum);
  color: #CCC;
  text-align: center;
  padding: 50px 40px;
}

footer .footer-logo {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

footer .tagline {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

footer p {
  font-size: 0.9rem;
  color: #AAA;
  margin-bottom: 6px;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* CONTACT FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--plum);
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  background-color: white;
  color: var(--dark);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* PAINTING IMAGE — uniform size across gallery */
.painting-img {
  width: 300px;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* UTILITY */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-float::before {
  content: "Chat with Varalakshmi";
  position: absolute;
  right: 68px;
  background: #333;
  color: white;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.whatsapp-float:hover::before { opacity: 1; }

/* HAMBURGER MENU BUTTON — hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1;
}

/* ===================== */
/* MOBILE — up to 768px  */
/* ===================== */
@media (max-width: 768px) {

  /* --- WHATSAPP BUTTON --- */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.6rem; }
  .whatsapp-float::before { display: none; }

  /* --- NAVIGATION --- */
  nav {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    gap: 0;
    padding-bottom: 8px;
  }
  nav ul.open { display: flex; }
  nav ul li { border-top: 1px solid rgba(255,255,255,0.1); }
  nav ul li a {
    display: block;
    padding: 11px 4px;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  /* --- HERO --- */
  .hero { padding: 48px 20px; text-align: center !important; }
  .hero h1 { font-size: 1.6rem; text-align: center !important; }
  .hero p { text-align: center !important; }
  .hero .tagline { text-align: center !important; }
  .hero div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 32px !important;
    align-items: center !important;
  }
  .hero div[style*="max-width:460px"] {
    max-width: 100% !important;
    width: 100% !important;
  }
  .hero img { width: 100% !important; max-height: 300px; object-fit: cover; }

  /* --- SECTIONS --- */
  section { padding: 44px 20px; }
  section.full-width { padding: 44px 20px; }

  /* --- HEADINGS --- */
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  /* --- AWARDS STRIP --- */
  .awards-strip { padding: 32px 20px; }
  .awards-strip h2 { font-size: 0.85rem; }
  .awards-grid { flex-direction: column; align-items: center; }
  .award-item { max-width: 100%; width: 100%; }

  /* --- CARD GRID --- */
  .card-grid { grid-template-columns: 1fr; gap: 20px; }

  /* --- PAINTING IMAGES --- */
  .painting-img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
  }

  /* --- PAINTING ENTRY FLEX ROWS --- */
  div[style*="display:flex"][style*="flex-wrap:wrap"] {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* --- ARTIST PHOTO --- */
  section img[style*="width:360px"] {
    width: 100% !important;
    max-height: 300px;
    object-fit: cover;
    object-position: top;
  }

  /* --- GALLERY STRIP --- */
  .gallery-strip img { height: 220px !important; }

  /* --- TABLES --- */
  table { display: block; overflow-x: auto; white-space: nowrap; font-size: 0.9rem; }

  /* --- CONTACT FORM GRID --- */
  section div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* --- BLOCKQUOTE --- */
  blockquote { padding: 20px 20px; font-size: 1rem; }

  /* --- FOOTER --- */
  footer { padding: 40px 20px; }

  /* --- BUTTONS --- */
  .btn { padding: 12px 20px; font-size: 0.85rem; }

  /* --- THERAPY CLOSING SECTION --- */
  section[style*="padding:70px 60px"] { padding: 44px 20px !important; }

  /* --- EKAM ADVITYAM SECTION --- */
  section[style*="padding: 70px 60px"] { padding: 44px 20px !important; }
}

/* ======================== */
/* SMALL PHONES — up to 480px */
/* ======================== */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.25rem; }
  .btn { display: block; text-align: center; margin: 8px 0; }
  .painting-img { height: 240px !important; }
}
