/* Importing elegant fonts to match the aesthetic */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap");

:root {
  --bg-color: #fdfaf6;
  --text-color: #333333;
  --accent-color: #dca7a5; /* Soft pastel pink */
  --accent-hover: #c68f8c;
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-heading);
  font-weight: 400;
}

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

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 7rem 1rem 5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--accent-hover);
}

/* Portfolio Grid */
.portfolio-section {
  padding: 2rem 5%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.portfolio-item h3 {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* Reel Section (Middle) */
.reel-section {
  background-color: #ffffff;
  padding: 6rem 5%;
  margin: 4rem 0;
}

.reel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.reel-placeholder {
  width: 320px;
  height: 568px; /* Classic 9:16 ratio for Reels/TikToks */
  background-color: #f7f7f7;
  border: 2px dashed #cccccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  text-align: center;
  padding: 2rem;
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.reel-text {
  max-width: 400px;
}

.reel-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--text-color);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  margin-top: 4rem;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: #ddd;
}

.btn-alt {
  background-color: #fff;
  color: var(--text-color);
}

.btn-alt:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem;
  background-color: #ffffff;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .reel-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .portfolio-item img {
    height: 400px;
  }
}
/* Contact & Location Section */
.contact-section {
  padding: 6rem 5%;
  background-color: var(--bg-color);
  border-top: 1px solid #eaeaea;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p,
.contact-info .address {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.highlight-link {
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s;
}

.highlight-link:hover {
  color: var(--accent-hover);
}

.social-links {
  margin-top: 2.5rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s;
}

.instagram-link svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent-color);
  transition: stroke 0.3s, transform 0.3s;
}

.instagram-link:hover {
  color: var(--accent-hover);
}

.instagram-link:hover svg {
  stroke: var(--accent-hover);
  transform: scale(1.1);
}

.contact-map {
  flex: 1.2;
  min-width: 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Update Responsive Styles for Map */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-map {
    height: 300px;
  }
}
/* Container to enforce the exact 9:16 vertical ratio */
.reel-video-wrapper {
  width: 320px;
  height: 568px; /* Classic 9:16 ratio */
  border-radius: 12px;
  overflow: hidden; /* Ensures the video respects the curved borders */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Adds a soft elegant shadow */
  background-color: #000; /* Black background while loading */
}

/* Forces the video to fill the 9:16 box perfectly */
.reel-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures no black bars, fills the box completely */
  display: block;
}
/* Company & Legal Info Section */
.company-info-section {
  padding: 5rem 5%;
  background-color: #ffffff; /* Crisp white background */
  color: var(--text-color);
}

.company-info-container {
  max-width: 1000px;
  margin: 0 auto;
}

.info-header {
  text-align: center;
  margin-bottom: 4rem;
}

.info-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
}

.info-header .subtitle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.info-block {
  flex: 1;
  min-width: 300px;
}

.info-block h3,
.section-divider {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.promise-list {
  list-style-type: none;
}

.promise-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.promise-list li::before {
  content: "•";
  color: var(--accent-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-item {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-item .emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  border: 1px solid #eaeaea;
  padding: 2rem;
  border-radius: 8px;
}

.product-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.product-card ul {
  padding-left: 1.2rem;
  color: #555;
  font-size: 0.95rem;
}

.product-card ul li {
  margin-bottom: 0.5rem;
}

/* Closing & Legal Blocks */
.info-closing {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background-color: var(--bg-color);
  border-radius: 8px;
}

.info-closing h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.strict-legal-block {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}

.strict-legal-block h4 {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strict-legal-block p {
  margin-bottom: 0.3rem;
}