/* Reset and Base */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121215;
    --bg-glass: rgba(18, 18, 21, 0.7);
    --text-light: #f5f5f5;
    --text-muted: #a1a1a6;
    --accent: #d2362b;
    /* Vibrant Red */
    --accent-hover: #b02b22;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
.quote-text {
    font-family: var(--font-heading);
    font-weight: 400;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 12, 0.9);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.logo {
    height: 80px;
    filter: brightness(0) invert(1) drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.navbar.scrolled .logo {
    height: 60px;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--accent);
    color: #000;
}

.lang-btn:hover:not(.active) {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: var(--transition);
}

.cta-button:hover {
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover::before {
    width: 100%;
}

/* Typography Enhancements */
.section-label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
}

.about-image {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(20%) contrast(110%);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: 1;
    border-radius: 4px;
    opacity: 0.5;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

/* Banner Section */
.banner-section {
    padding: 6rem 0;
    position: relative;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--accent);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-header .section-label::before,
.contact-header .section-label::after {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--accent);
}

.contact-desc {
    margin-top: -1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    display: inline-block;
    position: relative;
}

.phone-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--accent);
}

.phone-number:hover::after {
    width: 100%;
}

/* Social Icons */
.social-icons,
.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icons a,
.footer-social-icons a {
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover,
.footer-social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 10px rgba(210, 54, 43, 0.4));
}

.footer-social-icons {
    margin-top: 0;
}

/* Footer */
.footer {
    background: #050506;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    filter: invert(1);
    opacity: 0.5;
}

.footer p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.buzzlio-link {
    font-weight: 500;
    color: var(--text-light) !important;
}

.buzzlio-link:hover {
    color: var(--accent) !important;
}

/* Animations using Intersection Observer classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.observe-me {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.observe-me.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-section,
    .contact-section {
        padding: 5rem 0;
    }

    .banner-section {
        padding: 4rem 0;
    }

    .phone-number {
        font-size: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}