:root {
  --bg-color: #F4EBD8;
  --text-color: #2a2a2a;
  --accent-color: #c4a484;
  --border-color: #e5dac7;
  --card-bg: #ffffff;
  --brand-yellow: #DDA700;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-weight: normal;
  margin: 0;
}

header {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(-45deg, #2C1E16, #4A3525, #38271A, #1F140D);
  background-size: 400% 400%;
  animation: silkMove 8s ease infinite;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-bottom: 4px solid var(--brand-yellow); 
}

@keyframes silkMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  font-size: 4em;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #F4EBD8;
}

.brand-x {
  color: var(--brand-yellow); 
  display: inline-block;
  animation: pulseGlow 1.5s infinite alternate; 
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 10px rgba(221, 167, 0, 0.4);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 18px rgba(221, 167, 0, 0.8), 0 0 25px rgba(221, 167, 0, 0.5);
    transform: scale(2); 
  }
}

nav {
  margin-top: 20px;
}

nav a {
  color: #F4EBD8;
  text-decoration: none;
  margin: 0 10px;
  padding: 10px 25px; 
  border: 2px solid rgba(244, 235, 216, 0.3); 
  border-radius: 50px; 
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 1px;
  transition: all 0.4s ease; 
  display: inline-block;
}

nav a:hover {
  background-color: var(--brand-yellow); 
  color: #ffffff; 
  border-color: var(--brand-yellow);
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(221, 167, 0, 0.5); 
}

main {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#hero {
  text-align: center;
  margin-bottom: 90px;
  padding: 80px 40px; 
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('360_F_632272717_lCUsZZ6lzLuc8Rcc0wovABGLRENje66d.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border-top: 4px solid var(--brand-yellow); 
  border-bottom: 4px solid var(--brand-yellow);
  max-width: 900px;
  margin: 0 auto 90px auto;
}

#hero h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #ffffff; 
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

#hero p {
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 1.8em;
  color: #fdfbf7; 
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

#hero p b {
  display: block;
  margin-top: 25px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.55em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brand-yellow); 
  font-style: normal;
}
 
        .bg-3d-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -5;  
            overflow: hidden;
            background-color: var(--bg-color);
            perspective: 1000px;  
        }

        .shape-3d {
            position: absolute;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(196, 164, 132, 0.2));
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.6);
             
            box-shadow: 20px 20px 40px rgba(196, 164, 132, 0.4),
                       -20px -20px 40px rgba(255, 255, 255, 0.9);
            transform-style: preserve-3d;
            animation: float3D infinite linear;
            bottom: -300px;
        }

         
        .shape-1 { width: 120px; height: 120px; left: 10%; border-radius: 20px; animation-duration: 25s; }
        .shape-2 { width: 220px; height: 220px; left: 70%; border-radius: 50%; animation-duration: 35s; animation-delay: -5s; }
        .shape-3 { width: 80px; height: 80px; left: 40%; border-radius: 15px; animation-duration: 20s; animation-delay: -10s; }
        .shape-4 { width: 160px; height: 160px; left: 85%; border-radius: 30px; animation-duration: 30s; animation-delay: -15s; }
        .shape-5 { width: 250px; height: 250px; left: 15%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation-duration: 40s; animation-delay: -2s; }
        .shape-6 { width: 100px; height: 100px; left: 55%; border-radius: 50%; animation-duration: 28s; animation-delay: -8s; }

        @keyframes float3D {
            0% {
                transform: translateY(0) translateZ(-150px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                /* Moves up while rotating in 3D space */
                transform: translateY(-130vh) translateZ(250px) rotateX(360deg) rotateY(180deg) rotateZ(180deg);
                opacity: 0;
            }
        }

section {
  margin-bottom: 80px;
  width: 100%;
}

h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
  font-size: 1.8em;
  margin-bottom: 40px;
  color: var(--accent-color);
  border-left: 5px solid var(--brand-yellow);
  padding-left: 15px;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 15px;
  width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--brand-yellow);
}

.outfit-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 6px;
}

h4 {
  font-size: 1.2em;
  margin: 10px 0 5px 0;
  letter-spacing: 1px;
  color: var(--text-color);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 2.5em;
  color: var(--text-color);
  margin-bottom: 10px;
}

.subtitle {
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 1.3em;
  color: #555;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.form-container {
  background-color: var(--card-bg);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 4px solid var(--brand-yellow);
  width: 100%;
  max-width: 700px;
}

.input-group {
  margin-bottom: 25px;
  text-align: left;
}

.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85em;
  color: var(--text-color);
}

.input-group input, 
.input-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  background-color: #faf9f6;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-group input:focus, 
.input-group textarea:focus {
  outline: none;
  border-color: var(--brand-yellow);
  box-shadow: 0 0 10px rgba(221, 167, 0, 0.2);
  background-color: #ffffff;
}

.feedback-msg {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  min-height: 24px;
}

.submit-btn {
  width: 100%;
  background-color: var(--text-color);
  color: #ffffff;
  border: none;
  padding: 18px;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.submit-btn:hover {
  background-color: var(--brand-yellow);
  box-shadow: 0 8px 20px rgba(221, 167, 0, 0.4);
  transform: translateY(-3px);
}