/* Page Load Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

:root {
    --dark-black: #1a1a1a;
    --brown: #8B4513;
    --white-bg: #ffffff;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
}

/* Typography - Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Header Navigation */
header {
    background-color: #ffffff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brown);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.instagram-icon {
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.instagram-icon:hover {
    color: var(--brown);
}

.login-btn {
    font-family: var(--font-body);
    background-color: #8B4513;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #6B3510;
}

/* Dashboard Button Style - When logged in */
.login-btn.dashboard-btn {
    background: linear-gradient(135deg,  #6B3510 0%, #6B3510);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn.dashboard-btn:hover {
    background: linear-gradient(135deg,  #6B3510 0%, #6B3510 100%);
}

.login-btn.dashboard-btn i {
    font-size: 1rem;
}

/* Mobile Dashboard Button */
.mobile-login-btn {
    display: inline-block;
    background-color: #8B4513;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin-top: 1rem;
}

.mobile-login-btn.dashboard-btn {
    background: linear-gradient(135deg, #6B3510 0%, #6B3510 100%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--brown);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ffffff;
    padding: 2rem;
    transition: left 0.3s;
    z-index: 999;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav ul li {
    margin: 2rem 0;
}

.mobile-nav ul li a {
    font-family: var(--font-body);
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Images/Hair-Spot.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.book-now-btn {
    font-family: var(--font-body);
    background-color: var(--brown);
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
    margin: 0.5rem;
}

.book-now-btn:hover {
    background-color: #6B3510;
    transform: translateY(-3px);
}

.new-service-btn {
    font-family: var(--font-body);
    background-color: var(--brown);
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
    margin: 0.5rem;
}

.new-service-btn:hover {
    background-color: #6B3510;
    transform: translateY(-3px);
}

/* About Us Section */
.about-us {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../Images/HairSpotLogo.jpeg') center/cover no-repeat;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--brown);
}

.about-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color:#1a1a1a;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-header p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color:#1a1a1a;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 3rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card p {
    font-family: var(--font-body);
    color:#1a1a1a;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.contact-card a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--dark-black);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    nav {
        flex-direction: row-reverse;
    }

    .nav-right {
        order: -1;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero {
        height: 500px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .book-now-btn,
    .new-service-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: auto;
        margin: 0.5rem !important;
    }

    .about-us {
        grid-template-columns: 1fr;
        margin: 3rem auto;
    }

    .about-image {
        height: 350px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
    }
}
