/* ===== VARIABLES CSS ===== */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background-light: #eef6ff;
  --background-white: #ffffff6f;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ===== DARK MODE VARIABLES ===== */
[data-theme="dark"] {
  --primary-color: #818cf8;
  --primary-dark: #6366f1;
  --secondary-color: #f472b6;
  --accent-color: #d3349e;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;
  --background-light: #11182700;
  --background-white: #0a022e;
  --border-color: #374151;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);
}

/* ===== RESET & BASE ===== */


body {
  color: var(--text-primary);
  background-color: none;
  transition: var(--transition-default);
}

[data-theme="dark"] body {
  background-color: var(--background-light);
}

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

/* ===== TYPOGRAPHY ===== */
.private-gallery-landing h1,
.private-gallery-landing h2,
.private-gallery-landing h3,
.private-gallery-landing h4,
.private-gallery-landing h5,
.private-gallery-landing h6 {
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.private-gallery-landing h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.private-gallery-landing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.private-gallery-landing h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.private-gallery-landing p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
}


/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-default);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
  background: var(--background-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== ICONS ===== */
[class^="icon-"]::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: var(--spacing-xs);
}

.icon-shield::before { content: '\f3ed'; }
.icon-download::before { content: '\f019'; }
.icon-mobile::before { content: '\f3cd'; }
.icon-select::before { content: '\f046'; }
.icon-download-cloud::before { content: '\f0ed'; }
.icon-lock::before { content: '\f023'; }
.icon-design::before { content: '\f53f'; }
.icon-key::before { content: '\f084'; }
.icon-time::before { content: '\f017'; }
.icon-share::before { content: '\f064'; }
.icon-info::before { content: '\f05a'; }
.icon-responsive::before { content: '\f3fa'; }
.icon-speed::before { content: '\f0e7'; }
.icon-cloud-security::before { content: '\f6f3'; }
.icon-ui::before { content: '\f5fd'; }
.icon-gallery::before { content: '\f03e'; }
.icon-message::before { content: '\f4ad'; }
.icon-unlock::before { content: '\f09c'; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: var(--radius-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
  color: var(--text-primary);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.65fr;
  align-items: center;
  gap: var(--spacing-2xl);
  position: relative;
}
.fondzindex2reglage1 {
  margin-top: -350px !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  z-index: 0;
  position: relative;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-title {
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  margin-top: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #4824fb, #6600ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-title .highlight {
  background: linear-gradient(135deg, #7155ff, #9148ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
}
@media (max-width: 508px) {
.hero-subtitle {
  font-size: 13px;
}
.hero-title {
  margin-top: 0px;
}
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, #5b6ff3, #3f2fa0);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid #2c2f4f;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

[data-theme="dark"] .feature-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
}

.desktop-preview, .mobile-preview {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-default);
}

.desktop-preview {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-mobile {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}

.mobile-preview {
  max-width: 230px;
  width: 100%;
  height: auto;
}

.desktop-preview:hover, .mobile-preview:hover {
  transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: var(--spacing-2xl) 0;
}

[data-theme="dark"] .features-section {
  background: var(--background-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--background-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: 4px 1px 20px rgba(0, 0, 0, 0.467);
  text-align: center;
  transition: var(--transition-default);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] 
.feature-card {
  box-shadow: 4px 1px 30px rgba(255, 255, 255, 0.197);
}

[data-theme="dark"] .feature-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-white);
}

[data-theme="dark"] .how-it-works-section {
  background: #0f172a;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: var(--background-light);
  border-radius: var(--radius-xl);
  position: relative;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

[data-theme="dark"] .step {
  background: var(--background-white);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.step-visual {
  margin-top: var(--spacing-md);
}

.email-preview, .functions-preview {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-default);
}

.email-preview:hover, .functions-preview:hover {
  transform: scale(1.02);
}

/* ===== SECURITY SECTION ===== */
.security-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

[data-theme="dark"] .security-section {
  background: linear-gradient(135deg, #7c2d92 0%, #be185d 100%);
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.security-description {
  color: #fff !important;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.security-features {
  margin-bottom: var(--spacing-lg);
}

.security-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.security-warning {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border-left: 4px solid #fbbf24;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .security-warning {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #fcd34d;
}

.security-warning p {
  color: white;
  margin: 0;
}

/* ===== TECHNICAL SECTION ===== */
.technical-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-light);
}

[data-theme="dark"] .technical-section {
  background: var(--background-light);
}

.technical-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.tech-feature {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-default);
  border: 1px solid var(--border-color);
}

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

[data-theme="dark"] .tech-feature {
  background: var(--background-white);
  border: 1px solid var(--border-color);
}

.tech-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-color), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(95deg, #f0d5ff 0%, #6153ff 100%);
  color: rgb(0, 0, 0);
  text-align: center;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(95deg, #4c1d95 0%, #3730a3 100%);
  color: white;
}

.cta-content h2 {
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: var(--spacing-xl);
  font-size: 1.2rem;
}

[data-theme="dark"] .cta-content p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

[data-theme="dark"] .cta-note {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SEO SECTION ===== */
.seo-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-white);
}

[data-theme="dark"] .seo-section {
  background: var(--background-light);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-section ul {
  margin: 0 0 var(--spacing-md);
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.seo-section li {
  margin-bottom: 0.5rem;
}

.seo-section a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-section a:hover {
  color: var(--primary-dark);
}

.seo-links {
  list-style: disc;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

[data-theme="dark"] .modal {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--background-white);
  margin: 5% auto;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--background-light);
  color: var(--text-primary);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .form-group input:focus {
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
}

/* ===== SECURITY SECTION - Mise à jour ===== */
.security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.connection-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(99, 102, 241, 0.3);
  transition: var(--transition-default);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.connection-screenshot:hover {
  transform: scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .connection-screenshot {
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(129, 140, 248, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .connection-screenshot:hover {
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(129, 140, 248, 0.5);
}

.connection-screenshot-step {
  max-width: 40%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(99, 102, 241, 0.3);
  transition: var(--transition-default);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
.connection-screenshot-step {
  max-width: 80%;
}
}
.connection-screenshot-step:hover {
  transform: scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(99, 102, 241, 0.4);
}
[data-theme="dark"] .connection-screenshot-step {
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(129, 140, 248, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .connection-screenshot-step:hover {
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(129, 140, 248, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1208px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-features {
    justify-content: center;
  }
  
  .hero-visual {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .hero-mobile {
    order: 3;
  }

  .mobile-preview {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 180px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step:nth-child(even) {
    flex-direction: column;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .technical-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-badge {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--spacing-lg) 0;
  }
  
  .features-section,
  .how-it-works-section,
  .security-section,
  .technical-section,
  .cta-section {
    padding: var(--spacing-lg) 0;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
}
/* ===== STYLES MODALS SIMPLIFIÉS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    padding: 24px 24px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-body {
    padding: 0 24px 24px;
}

/* ===== MODAL GALERIE SPÉCIFIQUE ===== */
.gallery-instructions {
    text-align: center;
}

.gallery-instructions p {
    margin-bottom: 16px;
    color: #666;
    font-size: 1rem;
}

.gallery-instructions p:first-child {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.ready-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ready-section p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.gallery-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
}

/* ===== MODAL CONTACT (conservé) ===== */
.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.contact-item i {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ===== BOUTONS MODALS ===== */
.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-buttons .btn-primary,
.modal-buttons .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.modal-buttons .btn-primary {
    background: #007bff;
    color: white;
}

.modal-buttons .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.modal-buttons .btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.modal-buttons .btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn-primary,
    .modal-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-link {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
@media (max-width: 1640px) {
.fondzindex2 {
    display: block;
}
}
@media (max-width: 1370px) {
    .fondzindex2  {
        display: none;
    }
}
