:root {
  --primary-color: #ff9a9e; /* Soft pastel pink */
  --secondary-color: #fecfef; /* Very light pink */
  --bg-color: #ffffff;
  --text-dark: #333333;
  --text-light: #777777;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--text-dark);
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Header Config */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 5%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
}

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

/* Buttons */
.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 154, 158, 0.4);
  color: #fff;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--secondary-color);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  flex: 1;
  z-index: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  z-index: 1;
  text-align: right;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 80%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Services */
.section-padding {
  padding: 100px 5%;
  width: 100%;
}

.section-padding > div, .section-padding > form, .section-padding > iframe {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 60px;
}

.cards-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.minimal-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  flex: 1;
  min-width:250px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  border: 1px solid #f5f5f5;
}

.minimal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.minimal-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.minimal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.minimal-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.minimal-card .price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Gallery Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}

.masonry-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.masonry-item:nth-child(even) {
  grid-row: span 2;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Footer Forms */
.clean-form input, .clean-form select, .clean-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.clean-form input:focus, .clean-form select:focus, .clean-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 5px 15px rgba(255, 154, 158, 0.1);
}

/* Footer */
footer {
  background: #fafafa;
  padding: 80px 5% 40px;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col a, .footer-col p {
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--primary-color);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
/* Mobile Menu */
.hamburger {
  display: none;
  font-size: 26px;
  color: var(--text-dark);
  cursor: pointer;
}
.close-btn {
  display: none;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; justify-content: center;}
  .hero-image { display: none; }
  .hero h1 { font-size: 3rem; }
  
  header { padding: 15px 5%; }
  .hamburger { display: block; }
  
  #nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
  }
  
  #nav-menu.active {
    transform: translateY(0);
  }
  
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .close-btn:hover {
    transform: rotate(90deg);
  }
  
  #nav-menu ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    list-style: none;
    display: flex;
  }
  
  #nav-menu ul li a {
    font-size: 18px;
  }
}

