@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700&display=swap');

:root {
  --primary: #205559;
  --secondary: #F6AE2D;
  --accent: #EB5E55;
  --neutral: #F2F4F3;
  --background: #F9F9F9;
  --dark: #2D2A32;
  --blue: #86BBD8;
  --gradient-primary: linear-gradient(135deg, var(--primary), #153b3e);
  --gradient-secondary: linear-gradient(135deg, var(--secondary), #e59b17);
  --font-main: 'Noto Sans', sans-serif;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease-in-out;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary);
}

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

/* Custom Container */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-custom {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
}

/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-dark { color: var(--dark) !important; }
.text-light { color: var(--neutral) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-light { background-color: var(--neutral) !important; }
.bg-blue { background-color: var(--blue) !important; }

.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }

.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-bold { font-weight: 700 !important; }

.py-large { padding-top: 5rem; padding-bottom: 5rem; }
.py-xl { padding-top: 8rem; padding-bottom: 8rem; }

.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 5rem; }

.rounded-custom { border-radius: 10px; }
.rounded-lg { border-radius: 20px; }

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 45px;
}

.navbar-custom .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition);
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-custom .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.custom-toggler-icon {
  position: relative;
  width: 30px;
  height: 20px;
}

.custom-toggler-icon span {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  transition: var(--transition);
  left: 0;
  border-radius: 2px;
}

.custom-toggler-icon span:nth-child(1) {
  top: 0;
}

.custom-toggler-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.custom-toggler-icon span:nth-child(3) {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(32, 85, 89, 0.9), rgba(32, 85, 89, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-custom {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn-custom:hover::before {
  left: 0;
}

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

.btn-primary-custom:hover {
  background-color: darken(var(--primary), 10%);
  color: white;
}

.btn-secondary-custom {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-secondary-custom:hover {
  background-color: darken(var(--secondary), 10%);
  color: var(--dark);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

/* About Section */
.about-section {
  padding: 6rem 0;
  position: relative;
}

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

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}

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

.about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-img {
  transition: var(--transition);
}

.about-img-container:hover .about-img {
  transform: scale(1.05);
}

.about-content {
  padding: 2rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--neutral);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
  border-radius: 15px;
  background-color: white;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 2.5rem;
}

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.process-step {
  position: relative;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.process-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 42, 50, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.parallax-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.parallax-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: var(--neutral);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-img-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
  background-color: white;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-text {
  margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--primary);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form-section {
  padding: 6rem 0;
  position: relative;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(32, 85, 89, 0.25);
}

.contact-info {
  padding: 2rem;
  background-color: var(--primary);
  color: white;
  border-radius: 15px;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--secondary);
}

.iti {
  width: 100%;
}

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

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

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

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

.footer-links h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(45, 42, 50, 0.95);
  color: white;
  z-index: 9999;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.cookie-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept-all {
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
}

.btn-accept-all:hover {
  background-color: darken(var(--secondary), 10%);
}

.btn-settings {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-accept-necessary {
  background-color: transparent;
  border: 1px solid var(--neutral);
  color: var(--neutral);
}

.btn-accept-necessary:hover {
  background-color: rgba(242, 244, 243, 0.1);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background-color: white;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: translateY(50px);
  transition: transform 0.3s ease-in-out;
}

.cookie-settings-modal.show .cookie-settings-content {
  transform: translateY(0);
}

.cookie-settings-header {
  margin-bottom: 1.5rem;
}

.cookie-settings-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.cookie-settings-description {
  color: var(--dark);
  font-size: 0.9rem;
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-close:hover {
  background-color: var(--primary);
  color: white;
}

.cookie-category {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.cookie-category-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.btn-save-preferences {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-save-preferences:hover {
  background-color: darken(var(--primary), 10%);
}

/* Parallax Depth Effect */
.parallax-container {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}

.parallax-layer-back {
  transform: translateZ(-1px) scale(2);
}

.parallax-layer-mid {
  transform: translateZ(-0.5px) scale(1.5);
}

.parallax-layer-front {
  transform: translateZ(0);
}

.parallax-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Fashion-Editorial Style Elements */
.editorial-section {
  padding: 6rem 0;
  position: relative;
}

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

.editorial-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.editorial-image img {
  transition: var(--transition);
}

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

.editorial-content {
  padding: 2rem;
}

.editorial-quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--primary);
  position: relative;
  padding: 2rem;
  margin: 3rem 0;
  border-left: 5px solid var(--secondary);
}

.editorial-quote::before,
.editorial-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
}

.editorial-quote::before {
  top: -20px;
  left: 10px;
}

.editorial-quote::after {
  bottom: -40px;
  right: 10px;
}

.editorial-caption {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

.editorial-number {
  font-size: 10rem;
  font-weight: 700;
  color: rgba(32, 85, 89, 0.1);
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: -1;
}

.editorial-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  margin: 4rem 0;
}

/* Diagonal Sections */
.diagonal-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.diagonal-section::before,
.diagonal-section::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200px;
  background-color: white;
  z-index: 1;
}

.diagonal-section::before {
  top: 0;
  left: -50%;
  transform: rotate(-3deg) translateY(-50%);
}

.diagonal-section::after {
  bottom: 0;
  right: -50%;
  transform: rotate(-3deg) translateY(50%);
}

.diagonal-content {
  position: relative;
  z-index: 2;
}

/* Split Content */
.split-content {
  display: flex;
  flex-direction: column;
}

.split-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  padding: 2rem;
  background-color: white;
}

/* Staggered Grid */
.staggered-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.staggered-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.staggered-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.staggered-content {
  padding: 1.5rem;
  background-color: white;
}

/* Circular Elements */
.circle-element {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.circle-element h3 {
  color: white;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-container {
  position: relative;
  width: 100%;
  padding: 0 1rem 2rem;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  top: 20px;
  border-radius: 50%;
  background-color: var(--secondary);
  z-index: 1;
}

.timeline-container.left {
  left: 0;
}

.timeline-container.right {
  left: 50%;
}

.timeline-container.right::after {
  left: -12px;
}

.timeline-content {
  position: relative;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

/* Thank You Page */
.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container-custom {
    max-width: 540px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.7rem;
  }
  
  .staggered-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container-custom {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .split-content {
    flex-direction: row;
  }
  
  .split-image, 
  .split-text {
    width: 50%;
  }
  
  .timeline-container {
    width: 50%;
  }
  
  .timeline-container.left {
    padding-right: 3rem;
  }
  
  .timeline-container.right {
    padding-left: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container-custom {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 2.2rem;
  }
  
  .editorial-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .editorial-grid-item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
  }
  
  .editorial-grid-item-2 {
    grid-column: 6 / 13;
    grid-row: 1 / 2;
  }
  
  .editorial-grid-item-3 {
    grid-column: 6 / 10;
    grid-row: 2 / 3;
  }
  
  .editorial-grid-item-4 {
    grid-column: 10 / 13;
    grid-row: 2 / 3;
  }
  
  .staggered-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .staggered-item:nth-child(odd) {
    transform: translateY(30px);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-custom {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 5rem;
  }
}

/* Extra extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container-custom {
    max-width: 1320px;
  }
}