/*
 Theme Name:   Catch Wedding Child
 Theme URI:    https://exemple.com
 Description:  Thème enfant pour Catch Wedding
 Author:       Johanna & Clément
 Author URI:   https://exemple.com
 Template:     catch-wedding
 Version:      1.0.0
*/

/* Ici tu pourras écrire ton CSS personnalisé */

body {
  background-color: #f5f5f5;
}

/* === Supprimer complètement le header et le menu === */
.site-header,
#masthead,
.main-navigation,
.header-menu,
.search-container,
.site-branding,
.menu-toggle,
.menu {
  display: none !important;
}

/* === Section Héro avec ton image de fond === */
.hero-section {
  position: relative;
  background: url('https://www.xn--johanna-clment2026-kwb.fr/wp-content/uploads/2025/10/cropped-DSC01854-scaled-1.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section::after {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}

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

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-content p {
  font-size: 1.3rem;
  margin: 15px 0;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-content a.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff5252;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}
.hero-content a.btn:hover {
  background: #e00000;
}
