/* ========================================
   Laura Dziubaniuk - Professional Website
   Color Scheme: Black & Burgundy
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --black: #0d0d0d;
    --black-light: #1a1a1a;
    --black-lighter: #333333;
    --burgundy: #800020;
    --burgundy-dark: #5a0016;
    --burgundy-light: #722F37;
    --gold: #C5A059;
    --gold-light: #D4B77A;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray: #666666;
    --gray-light: #999999;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', Arial, sans-serif;
    
    /* Sizes */
    --hero-size: 72px;
    --h1-size: 48px;
    --h2-size: 36px;
    --h3-size: 24px;
    --body-size: 16px;
    --small-size: 14px;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    line-height: 1.6;
    color: var(--black-light);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: var(--h2-size);
    color: var(--black);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Background Colors */
.bg-black {
    background-color: var(--black);
    color: var(--white);
}

.bg-black .section-title {
    color: var(--white);
}

.bg-black .section-subtitle {
    color: var(--gray-light);
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    padding: 5px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--burgundy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: var(--hero-size);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

.btn-primary:hover {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--burgundy);
    z-index: 0;
}

.image-frame img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.about-text h3 {
    font-size: var(--h3-size);
    color: var(--burgundy);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Download Links */
.download-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.download-links h4 {
    font-size: 18px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.download-buttons .btn-outline,
.download-links .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    color: var(--white) !important;
    border: 2px solid var(--burgundy);
    background: var(--burgundy);
}

.download-buttons .btn-outline:hover,
.download-links .btn-outline:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
}

.download-buttons .btn-outline i,
.download-links .btn-outline i {
    font-size: 14px;
}

/* Credentials */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    border-radius: 4px;
}

.credential-item i {
    color: var(--gold);
}

.credential-item span {
    font-size: 13px;
    font-weight: 600;
}

/* Video Section */
.video-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-section-title {
    font-size: var(--h3-size);
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.video-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.video-card {
    background-color: var(--black-light);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Video Thumbnails with Play Overlay */
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-thumb .play-overlay i {
    font-size: 48px;
    color: #fff;
    opacity: 0.9;
}

.video-card:hover .play-overlay {
    background: rgba(128,0,32,0.6);
}

.video-card:hover .play-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.video-info p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--burgundy);
    color: var(--white);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid var(--off-white);
    background-color: var(--off-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--gray);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--black-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--burgundy);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--black-light);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}
    object-fit: contain;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --hero-size: 56px;
        --h1-size: 40px;
        --h2-size: 32px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --hero-size: 42px;
        --h1-size: 32px;
        --h2-size: 28px;
        --h3-size: 20px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --hero-size: 32px;
        --h1-size: 28px;
        --h2-size: 24px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .media-tabs {
        flex-direction: column;
    }
}

/* No Content Message */
.no-content {
    text-align: center;
    color: var(--gray-light);
    font-size: 16px;
    padding: 40px;
    grid-column: 1 / -1;
}

/* Videos Section */
.videos {
    background-color: var(--black);
    color: var(--white);
}

.videos .section-title {
    color: var(--white);
}

.videos .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
}

.youtube-channel-link {
    text-align: center;
    margin-top: 40px;
}

.youtube-channel-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Simplified About Section */
.about .about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.about .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about .about-text h2 {
    font-size: 36px;
    color: var(--burgundy);
    margin-bottom: 25px;
}

.about .about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Simplified Contact Section */
.contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact .section-subtitle {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .about .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about .credentials {
        justify-content: center;
    }
    
    .about .download-links {
        justify-content: center;
    }
    
    .contact .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact .contact-info {
        align-items: center;
    }
    
    .contact .social-links {
        justify-content: center;
    }
}
