/* ===== AuraWears Global Styles — Black & White ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--gray-600);
}

/* ===== Navigation ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar .logo span {
    color: var(--gray-400);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== Hero / Under Construction ===== */
.hero-construction {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-construction::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

.hero-construction::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-15px) rotate(1deg) scale(1.02);
    }

    66% {
        transform: translateY(-8px) rotate(-1deg) scale(0.99);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    }
}

.hero-construction .content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-construction .badge {
    display: inline-block;
    padding: 0.5rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-construction h1 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-construction h1 span {
    color: var(--gray-400);
}

.hero-construction p {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
    font-weight: 300;
}

.hero-construction .divider {
    width: 80px;
    height: 1px;
    background: var(--gray-600);
    margin: 0 auto 2rem;
}

.hero-construction .contact-note {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.hero-construction .contact-note a {
    color: var(--white);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-600);
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.hero-construction .contact-note a:hover {
    border-bottom-color: var(--white);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--white);
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
}

.page-header .accent-line {
    width: 60px;
    height: 1px;
    background: var(--gray-600);
    margin: 1.5rem auto 0;
    position: relative;
}

/* ===== Content Section ===== */
.content-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin: 3rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--gray-200);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 1.8rem 0 0.6rem;
}

.content-section p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.content-section ul,
.content-section ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.content-section li {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.content-section li::marker {
    color: var(--black);
}

.content-section strong {
    color: var(--black);
    font-weight: 600;
}

.content-section .highlight-box {
    background: var(--gray-50);
    border-left: 3px solid var(--black);
    padding: 1.4rem 1.6rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.content-section .highlight-box p {
    color: var(--black);
    margin-bottom: 0;
    font-weight: 500;
}

.content-section .email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--black);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.content-section .email-link:hover {
    border-bottom-color: var(--black);
}

/* ===== About Page Specific ===== */
.about-intro {
    font-size: 1.15rem !important;
    color: var(--gray-700) !important;
    line-height: 1.9;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    display: inline-block;
    background: var(--gray-100);
    color: var(--black);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--gray-500);
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.85rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-800);
}

.footer .logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer .logo span {
    color: var(--gray-400);
}

.footer p {
    margin-bottom: 0.3rem;
    font-weight: 300;
}

.footer a {
    color: var(--white);
}

.footer .footer-links {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer .footer-links a {
    color: var(--gray-500);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer .footer-links a:hover {
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--black);
        padding: 1rem 5%;
        gap: 0.8rem;
        border-top: 1px solid var(--gray-800);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .hero-construction h1 {
        font-size: 2.4rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 3rem 1.5rem 4rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}