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

:root {
  --rose: #c0392b;
  --rose-light: #e74c3c;
  --gold: #f0a500;
  --cream: #fdf6ec;
  --dark: #1a0a00;
  --text: #3d1a00;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Catamaran', 'Noto Serif Tamil', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a0000 0%, #5c0a0a 50%, #8b1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.petals {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 2rem;
  animation: fall 8s linear infinite;
  opacity: 0.3;
}

@keyframes fall {
  0%   { transform: translateY(-60px) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  z-index: 1;
}

.subtitle {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Noto Serif Tamil', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.2rem;
  color: #f5c6c6;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-family: 'Noto Serif Tamil', serif;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.miss-love-text {
  font-size: 1.2rem;
  line-height: 2.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
  animation: fadeUp 1.2s ease both;
  animation-delay: 0.4s;
  opacity: 0;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  font-family: 'Noto Serif Tamil', serif;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

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

.scroll-down {
  position: absolute;
  bottom: 2rem;
  font-size: 1.5rem;
  color: var(--gold);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── SHARED SECTION STYLES ── */
section {
  padding: 6rem 1.5rem;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: #fdecea;
  color: var(--rose);
  border: 1px solid #f5c6c0;
  border-radius: 50px;
  padding: 0.3rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

section h2 {
  font-family: 'Noto Serif Tamil', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--rose);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* ── SONG SECTION ── */
.song-section {
  background: var(--dark);
  color: #fff;
}

.song-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.song-section h2 {
  color: var(--gold);
}

.song-desc {
  color: #e8c9b0;
  font-family: 'Noto Serif Tamil', serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.yt-thumb-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.yt-thumb {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  transition: background 0.2s;
}

.yt-thumb-link:hover .yt-play-btn {
  background: rgba(229,70,110,0.7);
}

.youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── KAVITHAI SECTION ── */
.kavithai-section {
  background: #fff7f0;
}

.kavithai-single {
  margin-top: 3rem;
  background: linear-gradient(135deg, #5c0a0a, #8b1a1a);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

.kavithai-single::before {
  content: '\201C';
  font-size: 8rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.tamil-text-large {
  font-size: 1.7rem;
  line-height: 2.2;
  color: #fde8e4;
  font-style: italic;
  letter-spacing: 0.03em;
}

.kavithai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.kavithai-card {
  background: #fff;
  border: 1px solid #f5ddd6;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.kavithai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(192,57,43,0.12);
}

.kavithai-card.featured {
  background: linear-gradient(135deg, #5c0a0a, #8b1a1a);
  color: #fff;
  border: none;
}

.kavithai-card.featured .tamil-text {
  color: #fde8e4;
}

.kavithai-card.featured .poet {
  color: var(--gold);
}

.kavithai-number {
  font-size: 3rem;
  font-weight: 900;
  color: #f5ddd6;
  line-height: 1;
  margin-bottom: 1rem;
}

.kavithai-card.featured .kavithai-number {
  color: rgba(255,255,255,0.15);
}

.tamil-text {
  font-family: 'Noto Serif Tamil', serif;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text);
}

.tamil-text.large {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text);
}

.poet {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── MISS YOU SECTION ── */
.miss-section {
  background: linear-gradient(160deg, #fff0f0, #ffe4e4);
}

.miss-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-top: 2.5rem;
  border: 2px solid #f5c6c0;
  box-shadow: 0 10px 40px rgba(192,57,43,0.08);
}

.divider {
  font-size: 1.5rem;
  margin: 2rem 0;
  opacity: 0.6;
}

.miss-sign {
  font-family: 'Noto Serif Tamil', serif;
  font-size: 1.1rem;
  color: var(--rose);
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--dark);
}

.footer-tamil {
  font-family: 'Noto Serif Tamil', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.85rem;
  color: #a0685a;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .kavithai-grid {
    grid-template-columns: 1fr;
  }
  .miss-card {
    padding: 2rem 1.2rem;
  }
  .youtube-wrap {
    max-width: 100%;
  }
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* NAV */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e5466e;
}

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

nav ul a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover {
  color: #4f46e5;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #e5466e 0%, #f87171 100%);
  color: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #fde8ed;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #e5466e;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ABOUT */
.about {
  padding: 5rem 2rem;
  background: #f8f7ff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e5466e;
}

.about p {
  font-size: 1.1rem;
  color: #555;
}

/* CONTACT */
.contact {
  padding: 5rem 2rem;
  background: #fff;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact input,
.contact textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #e5466e;
}

.miss-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.quote {
  background: #fff0f3;
  border-left: 4px solid #e5466e;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-style: italic;
  color: #e5466e;
  font-size: 1rem;
  text-align: left;
}

.contact .btn {
  background: #e5466e;
  color: #fff;
  align-self: center;
  padding: 0.8rem 2.5rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #5c0020;
  color: #fca5a5;
  font-size: 0.9rem;
}
