:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --primary-color: #d400a5;
    /* Deep Magenta */
    --secondary-color: #7a00cc;
    /* Royal Purple */
    --accent-color: #ffd700;
    /* Gold */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.8;
    /* Increased for readability */
    font-weight: 300;
}

/* Background Animation */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 25%, rgba(212, 0, 165, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(122, 0, 204, 0.08) 0%, transparent 45%);
    filter: blur(80px);
    /* Softer glow */
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Lighter weight for elegance */
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffccff, #d400a5);
    /* Softer gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 100;
    transition: padding 0.3s;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(5, 5, 5, 0.7);
    /* Darker backing */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
    /* Full width feel */
    max-width: 100%;
    margin: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.7;
    max-width: 450px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    /* Sharp corners */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Abstract Visuals */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 600px;
    /* Larger visual */
    height: 600px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: 0;
    right: 50px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: 50px;
    left: 50px;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Sections General */
section {
    padding: 120px 8%;
    min-height: auto;
    /* Allow content to dictate height */
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 80px;
    text-align: center;
    font-weight: 300;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Sharper */
    padding: 50px;
    transition: border-color 0.3s ease;
}

/* About Section */
.about .card {
    text-align: center;
    font-size: 1.8rem;
    /* Larger philosophy text */
    max-width: 900px;
    font-family: var(--font-heading);
    margin: 0 auto;
    border: none;
    /* Remove top border */
    background: transparent;
    /* Cleaner look */
    backdrop-filter: none;
    box-shadow: none;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    text-align: left;
    /* Editorial align */
    padding: 50px 30px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    /* Removed shadow for flat look */
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #aaa;
    font-weight: 300;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Strict 3 columns on large screens */
    gap: 20px;
}

.gallery-item {
    text-align: left;
    padding: 15px;
    background: transparent;
    /* Remove card bg for gallery */
    border: none;
    box-shadow: none;
}

.gallery-item:hover {
    transform: none;
    /* Handle zoom on image only */
}

.image-container {
    height: 500px;
    /* Taller editorial images */
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    /* Slower, smoother */
}

.gallery-item:hover .gallery-img {
    transform: scale(1.03);
    /* Subtle zoom */
}

.gallery-item h3 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 15px;
}

/* Contact Section */
.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--glass-border);
    padding: 60px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
    resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #fff;
    background: transparent;
}

.contact .cta-button {
    width: 100%;
    margin-top: 10px;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-email:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 0;
    font-size: 0.8rem;
    opacity: 0.4;
    border-top: 1px solid var(--glass-border);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    header {
        padding: 0;
    }

    .glass-nav {
        border-radius: 0;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }
}