/* ===================================
   ADETUTU HAIR - MAIN STYLESHEET
   Core styles, typography, and general layout
   =================================== */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow-x: hidden;
    background: #1a0f0a;
    color: #333;
}

/* Color variables */
:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4bc;
    --dark-brown: #1a0f0a;
    --medium-brown: #4a3429;
    --light-bg: #f9f7f5;
    --white-bg: #fafafa;
}

/* Typography utilities */
.gold-text {
    background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(26, 15, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 900;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInNav 0.5s ease 3.2s both;
    opacity: 0;
}

nav.scrolled {
    padding: 10px 50px;
    background: rgba(26, 15, 10, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    min-width: 300px;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    animation: logoGlow 3s ease-in-out infinite, fadeInLogo 0.3s ease 3.4s both;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transition: transform 0.3s;
    opacity: 0;
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(rgba(26,15,10,0.6), rgba(26,15,10,0.4)), 
                url('../main.png') center/cover;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1.5s ease 3.2s both;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 5px;
    font-family: 'Georgia', serif;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: expandLine 2s ease 3.7s forwards;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f4e4bc;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero .tagline {
    font-size: 32px;
    margin-bottom: 40px;
    color: #d4af37;
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 3.7s both;
}

/* Parallax Sections */
.parallax-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
}

.bg1 {
    background-image: linear-gradient(rgba(26,15,10,0.6), rgba(26,15,10,0.4)), 
                      url('../Woman2.jpg');
}

.bg2 {
    background-image: linear-gradient(rgba(26,15,10,0.7), rgba(26,15,10,0.5)), 
                      url('https://images.unsplash.com/photo-1522337094846-8a818192de1f?w=1920');
}

.bg3 {
    background-image: linear-gradient(rgba(26,15,10,0.6), rgba(26,15,10,0.4)), 
                      url('https://images.unsplash.com/photo-1519699047748-de8e457a634e?w=1920');
}

.content-window {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    margin: 100px auto;
    padding: 80px 60px;
    max-width: 900px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content-window.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-window h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a0f0a;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
}

.content-window p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a3429;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    background: #f9f7f5;
    padding: 100px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Footer */
footer {
    background: #1a0f0a;
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

footer p {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 1px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #d4af37;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Utility classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Profile picture styles */
.profile-pic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    border: 1px solid #d4af37;
}
