/* Root Variables */
:root {
  --primary: #D81B60;
  --primary-dark: #880E4F;
  --primary-light: #F8BBD0;
  --accent: #FFD54F;
  --text: #212121;
  --text-light: #757575;
  --bg-light: #FFFFFF;
  --bg-off-white: #F5F5F5;
  --shadow: 0 8px 20px rgba(216, 27, 96, 0.15);
  --shadow-light: 0 4px 10px rgba(216, 27, 96, 0.08);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --border-radius: 20px;
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.page-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

/* Button Styles */
.primary-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 27, 96, 0.25);
  color: white;
}

.secondary-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: white;
  color: var(--primary);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Header */
header {
  padding: 1.5rem 5%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-size: 1.2rem;
  color: var(--primary);
}

.brand-text span {
  color: var(--primary-dark);
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-light);
}

nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

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

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

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

.cta-button {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-button:hover {
  background: var(--primary-dark);
  color: white;
}

.cta-button::after {
  display: none;
}

/* Hero Section */
.hero {
  display: flex;
  min-height: 85vh;
  padding: 3rem 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248,187,208,0.15) 0%, rgba(255,255,255,1) 100%);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h2 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-visuals {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
}

.decorative-element {
  max-width: 100%;
  height: auto;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 5%;
  background-color: var(--bg-off-white);
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.gallery-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.gallery-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.gallery-svg {
  width: 100%;
  height: 300px;
}

.gallery-item h3 {
  padding: 1.5rem;
  font-size: 1.2rem;
}

.gallery-cta {
  margin-top: 3rem;
}

/* Features Section */
.features-section {
  padding: 6rem 5%;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.features-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.feature-card p {
  color: var(--text-light);
}

/* Access Section */
.access-section {
  padding: 6rem 5%;
  background: var(--gradient);
  text-align: center;
  color: white;
}

.access-content {
  max-width: 800px;
  margin: 0 auto;
}

.access-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.access-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.access-section .primary-button {
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
}

.access-section .primary-button:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #202020;
  color: white;
  padding: 4rem 5% 2rem;
}

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

.footer-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-text p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-keywords {
  opacity: 0.7;
  font-size: 0.9rem;
  text-align: right;
  align-self: flex-end;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .footer-keywords {
    text-align: left;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero {
    flex-direction: column;
    padding: 2rem 5%;
    min-height: auto;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero p {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-visuals {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .features-container {
    gap: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-keywords {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .gallery-section h2,
  .features-section h2,
  .access-section h2 {
    font-size: 2rem;
  }
  
  .primary-button, 
  .secondary-button {
    width: 100%;
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    min-width: 100%;
  }
}
