/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #384568;
  --accent: #1fd3c0;
  --orange: #bc5631;
  --navy: #18566c;
  --light-bg: #f9f8f6;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --radius: 40px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--light-bg);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(56, 69, 104, 0.3);
}

.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 69, 104, 0.4);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(31, 211, 192, 0.3);
}

.btn--accent:hover {
  background: #17b8a7;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo img {
  height: 50px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  position: relative;
  transition: color 0.3s;
}

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

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

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

/* Language switcher */
.nav__lang {
  background: var(--accent);
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s;
}

.nav__lang::after {
  display: none !important;
}

.nav__lang:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: scale(1.05);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-toggle::after {
  content: '';
  display: none;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
}

.nav__dropdown-menu a:hover {
  background: var(--light-bg);
}

/* Mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 15px;
    display: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  margin-top: 80px;
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.hero__content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero__content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* ===== TWO COLUMNS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .two-col--reverse {
    direction: ltr;
  }
}

.two-col__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.two-col__text h2 {
  margin-bottom: 15px;
}

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

/* ===== CARDS (Atelier / Cabinet) ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card__logo {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filters .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.gallery-filters .btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.4s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item__info {
  padding: 18px;
}

.gallery-item__name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1rem;
}

.gallery-item__category {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gallery-item__price {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox__content {
  max-width: 800px;
  max-height: 90vh;
  position: relative;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox__caption {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== BLOG / NEWS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__body {
  padding: 25px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card__title {
  margin: 8px 0 12px;
  font-size: 1.1rem;
}

.blog-card__excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--accent);
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item__icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 25px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  margin-top: 80px;
  padding: 60px 0;
  background: var(--light-bg);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SEPARATOR ===== */
.separator {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 25px;
  border-radius: 2px;
}

/* ===== REFLEXOLOGY BENEFITS ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit {
  text-align: center;
  padding: 30px 20px;
}

.benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.benefit p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { height: 50vh; }
  .hero__content h1 { font-size: 2rem; }
  .section { padding: 50px 0; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
