/* Base Styles & Variables */
:root {
  --primary: #fe6471;
  --secondary: #f9a287;
  --accent: #ffcb8e;
  --dark: #1a1a2a;
  --light: #f8f8fc;
  --text: #333344;
  --text-light: #666677;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
}

.accent {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -5px;
  right: -5px;
  height: 10px;
  background-color: var(--accent);
  opacity: 0.3;
  z-index: -1;
  transform: skew(-10deg);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: rgba(248, 248, 252, 0.7);
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-icon {
  margin-right: 10px;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(254, 100, 113, 0.1) 0%, rgba(255, 203, 142, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.05;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.05;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 10px rgba(254, 100, 113, 0.3);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(254, 100, 113, 0.4);
}

.secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary:hover {
  background-color: var(--primary);
  color: white;
}

.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Features Section */
.features-flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* Premium Section */
.premium {
  text-align: center;
  background: linear-gradient(135deg, rgba(254, 100, 113, 0.1) 0%, rgba(255, 203, 142, 0.1) 100%);
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.benefits {
  margin: 2rem 0;
  text-align: left;
}

.benefits li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-logo svg {
  margin-right: 10px;
}

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

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .features-flex {
    flex-wrap: wrap;
  }
  
  .feature {
    flex-basis: 48%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .feature {
    flex-basis: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: 2rem 1rem;
  }
}
