:root {
    --bg-color: #050505;
    --bg-secondary: #0A0A0A;
    --text-primary: #FFFFF0;
    --text-secondary: #A0A0A0;
    --accent-gold: #D4AF37;
    --accent-hover: #b5952f;
    --nav-bg: rgba(5, 5, 5, 0.8);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: var(--nav-bg);
    padding: 1.5rem 8%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary):hover {
    width: 100%;
    color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
    background-color: transparent;
    color: var(--text-primary) !important;
    padding: 0.8rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
    background-color: var(--text-primary);
    color: var(--bg-color) !important;
    border-color: var(--text-primary);
}

.btn-primary::after {
    display: none !important;
}

.btn-outline {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-gold);
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--bg-color);
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.5s;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero .subtitle {
    color: var(--accent-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.hero .title {
    font-size: 6rem;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero .title em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 300;
}

.hero .description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 30%, transparent 80%, var(--bg-color) 100%), 
                url('../assets/hero_bg.png') center/cover no-repeat;
    z-index: 1;
    opacity: 0.6;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections Base */
section {
    padding: 8rem 10%;
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 700px;
    width: 100%;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #111;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    z-index: -1;
}

#about-img {
    background-image: url('../assets/about_connie.png');
}

.about-content .subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-top: 3rem;
    opacity: 0.8;
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1px;
    transition: transform 0.4s ease, background 0.4s ease;
    height: 100%;
}

.card-inner {
    background: var(--bg-color);
    padding: 3rem 2rem;
    height: 100%;
    transition: background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.service-card:hover .card-inner {
    background: rgba(10, 10, 10, 0.95);
}

.card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.card-inner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Portfolio Editorial */
.portfolio {
    background-color: var(--bg-color);
}

.editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-top: 4rem;
}

.editorial-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.editorial-item.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.editorial-item.reverse .editorial-image {
    order: 2;
}

.editorial-image {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.editorial-item:hover .editorial-image img {
    transform: scale(1.05);
}

.editorial-info {
    padding-right: 2rem;
}

.editorial-item.reverse .editorial-info {
    padding-right: 0;
    padding-left: 2rem;
}

.editorial-info .category {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    display: block;
}

.editorial-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.editorial-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 400px;
    font-weight: 300;
}

@media (max-width: 992px) {
    .editorial-item, .editorial-item.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .editorial-image {
        height: 60vh;
    }
    
    .editorial-item.reverse .editorial-image {
        order: 0;
    }
    
    .editorial-info {
        padding: 0 !important;
    }
    
    .editorial-grid {
        gap: 8rem;
    }
}


/* Footer Section */
.footer {
    background-color: var(--bg-secondary);
    padding: 8rem 10% 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 6rem;
}

.footer-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive updates */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    .nav-links li:not(:last-child) {
        display: none;
    }
    .nav-links li:last-child {
        display: block;
    }
    .hero .title {
        font-size: 4.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 500px;
        order: -1;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero .title {
        font-size: 3.5rem;
    }
    .hero .description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-bg {
        width: 100%;
        opacity: 0.4;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.8) 0%, transparent 70%), 
                    url('../assets/hero_bg.png') center/cover no-repeat;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-content h2, .section-header h2, .footer-title {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fallback for elements if JS is not running */
.no-js .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}
