```html Diva Dees Exquisite Hair & Beauty

Experience Exquisite Beauty

Where luxury meets artistry — indulge in premium hair & skincare crafted for the discerning.

Book Your Transformation

Signature Services

Luxury Hair Styling

from $120

Balayage & Color

from $185

Advanced Skincare

from $95

Secure Your Moment

``` ```css /* style.css — Diva Dees Exquisite Hair & Beauty */ /* Reset & base */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Inter', sans-serif; background-color: #fcf9f5; /* soft off-white */ color: #1e1e1e; line-height: 1.6; } /* Typography: serif for headings, sans for body */ h1, h2, h3, h4, .logo-main, .hero-title, .section-title { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: 0.02em; } h2.section-title { font-size: 2.2rem; margin-bottom: 1.8rem; color: #1a1a1a; } .gold-title { color: #b8860b; text-shadow: 0 1px 2px rgba(0,0,0,0.05); } /* container */ .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } /* ----- STICKY NAVIGATION ----- */ .navbar { position: sticky; top: 0; z-index: 1000; background: rgba(30, 30, 30, 0.94); backdrop-filter: blur(6px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); padding: 0.8rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.25); } .nav-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .logo { display: flex; flex-direction: column; line-height: 1.2; } .logo-main { font-size: 1.9rem; font-weight: 700; color: #d4af37; letter-spacing: 0.04em; } .logo-sub { font-size: 0.8rem; font-weight: 300; letter-spacing: 0.2em; color: #e0d5c0; text-transform: uppercase; } .nav-links { display: flex; gap: 2.2rem; align-items: center; } .nav-item { color: #f0ebe1; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.2s, border-bottom 0.2s; padding: 0.4rem 0; border-bottom: 2px solid transparent; } .nav-item:hover, .nav-item:focus { color: #d4af37; border-bottom-color: #d4af37; } /* hamburger */ .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px 0; } .hamburger .bar { width: 28px; height: 2.5px; background: #d4af37; border-radius: 4px; transition: all 0.25s ease; } /* ----- HERO SECTION ----- */ .hero { min-height: 88vh; background: linear-gradient(145deg, #1e1e1e 0%, #2d2a24 100%); display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; position: relative; border-bottom: 4px solid #d4af37; } .hero-content { max-width: 780px; text-align: center; color: #f8f3ea; } .hero-title { font-size: 4.2rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem; color: #faf3e7; text-shadow: 0 4px 20px rgba(0,0,0,0.5); } .hero-title::after { content: ''; display: block; width: 80px; height: 3px; background: #d4af37; margin: 0.8rem auto 0; } .hero-description { font-size: 1.25rem; font-weight: 300; max-width: 600px; margin: 1.4rem auto 2rem; color: #ddd6c8; letter-spacing: 0.01em; } /* GOLD BUTTON */ .btn-gold { display: inline-block; background: #d4af37; color: #1e1e1e; font-weight: 600; padding: 0.9rem 2.6rem; border-radius: 40px; text-decoration: none; font-size: 1.1rem; border: 2px solid #d4af37; transition: all 0.25s ease; box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25); letter-spacing: 0.04em; } .btn-gold:hover { background: transparent; color: #d4af37; box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4); transform: translateY(-2px); } /* ----- SERVICES GRID ----- */ .services-section { padding: 5rem 0 4rem; background: #fcf9f5; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 1rem; } .service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 35px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; text-align: center; padding-bottom: 1.6rem; border: 1px solid #f0ebe0; } .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,0,0,0.09); } .placeholder-img { background: #e5ddd0; height: 200px; background-image: repeating-linear-gradient(45deg, #d4c8b8 0px, #d4c8b8 8px, #e5ddd0 8px, #e5ddd0 16px); background-size: 30px 30px; margin-bottom: 1.2rem; border-bottom: 2px solid #d4af37; } .service-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: #1e1e1e; } .service-price { font-size: 1.1rem; font-weight: 500; color: #b8860b; margin-top: 0.3rem; } /* ----- BOOKING SECTION ----- */ .booking-section { background: #1e1e1e; padding: 4rem 0 5rem; border-top: 4px solid #d4af37; border-bottom: 4px solid #d4af37; } .booking-container { background: #28241e; border-radius: 32px; padding: 2.8rem 2.8rem 3.2rem; max-width: 720px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.5); } .booking-container .section-title { color: #f8f3ea; text-align: center; margin-bottom: 2.2rem; } .booking-form { display: flex; flex-direction: column; gap: 1.3rem; } .form-group { display: flex; flex-direction: column; gap: 0.3rem; } .form-group label { color: #e4dbce; font-weight: 500; letter-spacing: 0.02em; font-size: 0.95rem; } .form-group input, .form-group select { background: #f8f3ea; border: 2px solid #3e3a34; border-radius: 14px; padding: 0.8rem 1.2rem; font-size: 1rem; font-family: 'Inter', sans-serif; transition: border 0.2s, box-shadow 0.2s; color: #1e1e1e; width: 100%; } .form-group input:focus, .form-group select:focus { outline: none; border-color: #d4af37; box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25); background: #fffcf7; } .form-group select { appearance: auto; cursor: pointer; } .submit-btn { margin-top: 0.8rem; width: 100%; padding: 1rem; font-size: 1.2rem; background: #d4af37; border: 2px solid #d4af37; border-radius: 60px; color: #1e1e1e; font-weight: 700; cursor: pointer; transition: all 0.25s; letter-spacing: 0.08em; } .submit-btn:hover { background: transparent; color: #d4af37; transform: scale(1.01); box-shadow: 0 0 20px rgba(212, 175, 55, 0.25); } /* ----- FOOTER ----- */ .footer { background: #12100e; color: #dbd2c4; padding: 3rem 2rem 1.5rem; border-top: 2px solid #d4af37; } .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .footer-col h4 { font-family: 'Playfair Display', serif; color: #d4af37; font-size: 1.3rem; margin-bottom: 1rem; border-bottom: 1px solid #d4af3730; padding-bottom: 0.5rem; } .footer-hours li { list-style: none; margin-bottom: 0.4rem; font-weight: 300; } .footer-col p { margin-bottom: 0.6rem; font-weight: 300; } .footer-col i { color: #d4af37; width: 1.6rem; } .social-icons { display: flex; gap: 1.2rem; margin: 0.8rem 0 1.4rem; } .social-icons a { color: #d4af37; background: #28241e; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.3rem; transition: 0.2s; border: 1px solid #d4af3750; } .social-icons a:hover { background: #d4af37; color: #1e1e1e; transform: translateY(-3px); } .footer-credit { font-size: 0.8rem; opacity: 0.6; margin-top: 0.8rem; } /* ----- RESPONSIVE (MOBILE-FIRST) ----- */ @media screen and (max-width: 820px) { .hero-title { font-size: 3.2rem; } .services-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; } } @media screen and (max-width: 650px) { .hamburger { display: flex; } .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: #1e1e1e; flex-direction: column; padding: 1.8rem 0; gap: 1.2rem; border-top: 2px solid #d4af37; display: none; box-shadow: 0 20px 30px rgba(0,0,0,0.4); } .nav-links.nav-open { display: flex; } .nav-item { font-size: 1.1rem; } .hero-title { font-size: 2.6rem; } .hero-description { font-size: 1rem; } .services-grid { grid-template-columns: 1fr; gap: 2rem; } .booking-container { padding: 2rem 1.2rem; } .footer-container { grid-template-columns: 1fr; text-align: center; } .social-icons { justify-content: center; } .logo-main { font-size: 1.5rem; } .logo-sub { font-size: 0.7rem; } } ```