:root {
    --font-heading: 'Italiana', serif;
    --font-body: 'Inter', sans-serif;
    --color-white: #ffffff;
    --color-dark: #111111;
    --color-light: #faf9f6;
    --color-accent: #d4af37;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Full Screen Wrapper */
.hero-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: -webkit-fill-available;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background Image */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/aurielle-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
}

/* Slight dark overlay to ensure text is readable */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 1;
}

.logo-img {
    width: 70px;
    height: auto;
    margin-right: 12px;
    flex-shrink: 0;
    filter: invert(1);
    -webkit-filter: invert(1);
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.7;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease;
}

.logo-text:hover {
    opacity: 0.7;
}

.logo-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Navigation */
.glass-nav {
    display: flex;
    gap: 2.5rem;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-nav a {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.glass-nav a:hover {
    opacity: 0.7;
}

/* Sidebars */
.social-sidebar {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 10;
}

.social-sidebar a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-sidebar a:hover {
    opacity: 1;
}

.scroll-sidebar {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Main Hero Content */
.hero-center {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-white);
    color: #000;
}

/* Page Sections */
.page-section {
    min-height: 80vh;
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-section {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.dark-section {
    background-color: var(--color-dark);
    color: var(--color-white);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
    color: inherit;
    opacity: 0.8;
}

.center-text {
    text-align: center;
    margin-bottom: 4rem !important;
}

/* Notes Grid */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.note-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.4s ease;
}

.note-card:hover {
    transform: translateY(-10px);
}

.note-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-style: italic;
}

.note-card p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* Contact / Footer Section */
.contact-section {
    min-height: auto;
    padding: 6rem 4rem;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    text-align: center;
    width: 100%;
}

.footer-logo {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.footer-content p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

.copyright {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0 !important;
    opacity: 0.4 !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .header {
        padding: 2rem;
        flex-wrap: wrap;
    }
    .social-sidebar {
        left: 1.5rem;
    }
    .scroll-sidebar {
        right: 1.5rem;
    }
    .notes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
    }
    .logo {
        width: 100%;
    }
    .logo-link {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(35px); /* Adding this back to optically center the wordmark while logo stays left! */
    }
    .logo-img {
        position: absolute;
        right: 100%;
        width: 70px;
        margin-right: -26px;
        margin-bottom: 0;
    }
    .logo-text {
        transform: translateX(-20px);
        -webkit-transform: translateX(-20px);
    }
    .glass-nav {
        display: flex;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        padding: 1rem 2rem;
        gap: 1.5rem;
        z-index: 1000;
        width: max-content;
    }
    .logo-name {
        font-size: 1.5rem;
    }
    .logo-sub {
        font-size: 0.5rem;
    }
    .social-sidebar, .scroll-sidebar {
        display: none;
    }
    .hero-center {
        top: 60%;
        padding: 0 1rem;
    }
    .hero-subtitle {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .btn-outline {
        padding: 0.8rem 2rem;
    }
    .page-section {
        padding: 4rem 1.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-text {
        font-size: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
