/* Les Maisonettes - Main Stylesheet */

/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* CSS Variables */
:root {
  --primary-color: #455459;
  --primary-light: #5a6b71;
  --primary-dark: #2f3b3f;
  --accent-color: #8fa5ad;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-color: #333333;
  --text-light: #666666;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(69, 84, 89, 0.8);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --header-height: 130px;
}

/* Map Section */
.map-section {
  padding: 3rem 0 0;
}

.map-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.map-section iframe {
  width: 100%;
  height: 400px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-color);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo img {
  height: 168px;
  width: auto;
  transition: height var(--transition-medium);
}

.header.scrolled .logo img {
  height: 120px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

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

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

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

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

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

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--primary-color);
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.lang-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--medium-gray);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-weight: 700;
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.3);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Welcome Section - Alternating Layout */
.welcome-section {
  padding: 6rem 0;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-media img,
.content-media video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.content-text {
  padding: 1rem 0;
}

.content-text h3 {
  margin-bottom: 1.5rem;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.8;
}

/* Residencies Section */
.residencies-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.residence-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.residence-card:nth-child(even) {
  direction: rtl;
}

.residence-card:nth-child(even) > * {
  direction: ltr;
}

.residence-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/3;
}

.residence-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.residence-slider img.active {
  opacity: 1;
}

.residence-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.residence-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

.view-all-link {
  text-align: center;
  margin-top: 3rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
}

.reviews-section .section-title h2 {
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.review-meta h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-meta span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.review-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.9;
  color: rgba(255,255,255,0.9);
}

.review-stars {
  color: #ffd700;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

/* Page Hero (Interior Pages) */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero img,
.page-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-weight: 700;
}

/* Property Detail Page */
.property-description {
  padding: 4rem 0;
}

.property-description .container {
  max-width: 900px;
}

.property-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Facilities & Services */
.facilities-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.facilities-column h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.accessibility-facilities {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(69, 84, 89, 0.2);
}

.accessibility-facilities h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.facilities-list {
  display: grid;
  gap: 0.75rem;
}

.facilities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.facilities-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 0;
}

.gallery-category {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.gallery-category:first-of-type {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-fast);
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: var(--primary-color);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-white:hover {
  background: var(--off-white);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* Location Section */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.location-block:nth-child(even) {
  direction: rtl;
}

.location-block:nth-child(even) > * {
  direction: ltr;
}

.location-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.location-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.location-image:hover img {
  transform: scale(1.05);
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
  margin-top: var(--header-height);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

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

.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  transition: border-color var(--transition-fast);
}

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

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 168px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

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

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-registration {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-espa {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0;
}

.footer-espa img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Lightbox Bottom Navigation */
.lightbox-nav-bottom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.lightbox-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-counter {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

/* Language Toggle */
[data-lang="gr"] {
  display: none;
}

html[lang="el"] [data-lang="en"] {
  display: none;
}

html[lang="el"] [data-lang="gr"] {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .content-block,
  .residence-card,
  .location-block,
  .facilities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-block.reverse,
  .residence-card:nth-child(even),
  .location-block:nth-child(even) {
    direction: ltr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 1rem;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1rem;
  }

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

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .lang-selector {
    order: -1;
    margin-bottom: 1rem;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .section {
    padding: 3rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-media img,
  .content-media video {
    height: 300px;
  }

  .slider-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .slider-nav,
  .slider-arrows,
  .btn {
    display: none;
  }

  .hero {
    height: auto;
    margin-top: 0;
  }

  .section {
    page-break-inside: avoid;
  }
}
