/* Base styles and variables */
:root {
  --pink: #f2b6b4;
  --pink-light: #fad9d8;
  --pink-dark: #e79795;
  --dark: #191919;
  --dark-light: #333;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-light: rgba(212, 175, 55, 0.3);
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background-color: var(--white);
  position: relative;
  min-height: 100vh;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles - Modern floating design */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(242, 182, 180, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  flex: 0 0 240px;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Navigation - Modern spacing and effects */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--pink-dark);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.social-icon {
  color: var(--dark);
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  color: var(--white);
  background-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--dark);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  color: var(--pink);
  background-color: rgba(242, 182, 180, 0.1);
}

/* Hero Section - Modern gradient and typography */
.hero {
  background: linear-gradient(135deg, 
    rgba(242, 182, 180, 0.15) 0%, 
    rgba(250, 217, 216, 0.8) 50%, 
    rgba(242, 182, 180, 0.12) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="%23d4af37" stroke-width="0.3" opacity="0.4"/></svg>') repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: var(--dark-light);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-weight: 400;
  opacity: 0.9;
}

/* Contact Hero Specific */
.contact-hero {
  background: linear-gradient(135deg, 
    rgba(242, 182, 180, 0.18) 0%, 
    rgba(250, 217, 216, 0.9) 50%, 
    rgba(242, 182, 180, 0.15) 100%);
}

/* Content Section - Modern spacing and typography */
.content-section {
  padding: 5rem 0 2rem 0;
}

.content {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.content p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 400;
}

.content p:last-child {
  margin-bottom: 0;
}

/* Contact specific styles - Modern card design */
.contact-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(242, 182, 180, 0.1);
}

.contact-content h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--dark);
  text-align: center;
}

.contact-details {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(242, 182, 180, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--pink);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(242, 182, 180, 0.1);
  transform: translateX(8px);
}

.contact-item strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-link {
  color: var(--pink-dark);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--dark);
  transform: translateX(5px);
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

/* Button Styles - Modern 3D effect */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem 0;
}

.button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 8px 25px rgba(242, 182, 180, 0.4);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(242, 182, 180, 0.5);
}

.button:active {
  transform: translateY(-2px);
}

/* Acknowledgment Section - respectful and elegant styling */
.acknowledgment {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(242, 182, 180, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.acknowledgment p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

/* Quick Exit Button - Modern floating design */
.quick-exit-button {
  position: fixed;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.quick-exit-button:hover {
  background: linear-gradient(135deg, #000 0%, var(--dark) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.quick-exit-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.quick-exit-button:hover i {
  transform: translateX(3px);
}

/* Footer Styles - Modern minimalist design */
.footer {
  background: linear-gradient(135deg, var(--pink-light) 0%, rgba(250, 217, 216, 0.8) 100%);
  padding: 3rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(242, 182, 180, 0.2);
  backdrop-filter: blur(10px);
}

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

.footer-text {
  color: var(--dark);
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-text p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer .social-icon {
  color: var(--dark);
  font-size: 1.4rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer .social-icon:hover {
  color: var(--white);
  background: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  .contact-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1.2rem 1.5rem;
  }
  
  .logo-container {
    flex: 0 0 200px;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 2rem 2rem;
    z-index: 999;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .button {
    width: 100%;
    max-width: 350px;
    min-width: auto;
    flex: none;
  }
  
  .content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact-item {
    align-items: center;
    text-align: center;
  }

  .contact-content {
    padding: 2rem;
    margin: 1rem;
  }

  .content-section {
    padding: 3rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .logo-container {
    flex: 0 0 160px;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .quick-exit-button {
    font-size: 0.8rem;
    padding: 10px 16px;
    top: 20px;
    right: 20px;
  }

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

  .hero {
    padding: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Added responsive styles for larger contact details on desktop */
@media (min-width: 768px) {
  .contact-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

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

@media (min-width: 992px) {
  .contact-details {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto 0;
  }
}
