/* Modern Event Management Website - Reference Design Implementation */

/* CSS Variables */
:root {
  --primary-bg: #1a1a1a;
  --secondary-bg: #2a2a2a;
  --accent-bg: #333333;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border: #444444;
  --shadow: rgba(0, 0, 0, 0.3);
  --max-width: 1200px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--gold);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Header */
.site-header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
  /* Reduced from 3rem to fit more items */
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-bg);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hamburger:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-image: url('../images/luxury-wedding-venue-karimnagar.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero .actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .actions a:not(.cta-btn) {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.hero .actions a:not(.cta-btn):hover {
  color: var(--gold);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section:nth-child(even) {
  background-color: var(--secondary-bg);
}

/* Service Cards */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(145deg, var(--secondary-bg), var(--accent-bg));
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--primary-bg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Testimonials */
.testimonial {
  background: linear-gradient(145deg, var(--secondary-bg), var(--accent-bg));
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  border: 1px solid var(--border);
  margin: 2rem 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: 'Playfair Display', serif;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--secondary-bg);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--primary-bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-bg);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Redesign */
.site-footer {
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  padding: 4rem 1rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col h3,
.footer-col h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #cccccc;
  line-height: 1.8;
  display: block;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
  text-decoration: none;
  padding: 0;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #888;
}

/* Responsive Design */
@media (max-width: 968px) {
  .card-row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero .actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 4rem 0;
  }

  .card-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .hero {
    min-height: 80vh;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section>* {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.bg-secondary {
  background-color: var(--secondary-bg);
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}