/* ===================================
   DR. CHASE CLINIC - PREMIUM LUXURY DESIGN
   =================================== */

/* ===== VARIABLES ===== */
:root {
    /* Color Palette - Black & Gold */
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-light: #111111;
    --black-medium: #1a1a1a;
    --gray-dark: #222222;
    --gray-medium: #333333;
    --gray-light: #888888;
    --gray-lighter: #b0b0b0;
    --white: #ffffff;
    --white-off: #f5f5f5;
    
    /* Gold Shades */
    --gold-dark: #8a6d3b;
    --gold: #b08d57;
    --gold-light: #c9a96a;
    --gold-bright: #d4af5c;
    --gold-pale: #e8d5a8;
    
    /* Fonts */
    --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Noto Sans KR', -apple-system, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 30px rgba(176, 141, 87, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-lighter);
    background-color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.gold-text {
    color: var(--gold);
}

.underline {
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 28px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--black) 0%, 
        var(--black-light) 50%, 
        var(--black) 100%
    );
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, 
        rgba(176, 141, 87, 0.08) 0%, 
        transparent 60%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 700px;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-lighter);
    margin-bottom: 50px;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 140px 0;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.section-label-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
}

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

.section-title {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 25px;
}

.title-script {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

.section-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-lighter);
}

/* ===== ABOUT SECTION ===== */
.section-about {
    background: var(--black-soft);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-medium) 100%);
    overflow: hidden;
}

.doctor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-dark) 100%);
}

.doctor-placeholder i {
    font-size: 120px;
    color: var(--gold);
    opacity: 0.3;
}

.frame-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-title {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 30px;
}

.about-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--gray-lighter);
    margin-bottom: 50px;
}

.about-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.stat-plus,
.stat-unit {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-light);
    margin-top: 10px;
    text-transform: uppercase;
}

/* ===== SIGNATURE SECTION ===== */
.section-signature {
    background: var(--white-off);
}

.section-signature .section-title,
.section-signature .section-description {
    color: var(--black-light);
}

.section-signature .label-text {
    color: var(--gold-dark);
}

.section-signature .label-line {
    background: var(--gold-dark);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.signature-card {
    background: var(--white);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.signature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--gold);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    margin-bottom: 30px;
    transition: var(--transition);
}

.signature-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 28px;
    color: var(--white);
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black-light);
    margin-bottom: 20px;
}

.card-title span {
    font-weight: 400;
    color: var(--gray-medium);
}

.card-description {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.card-link:hover {
    color: var(--gold);
    gap: 15px;
}

/* ===== CTA SECTION ===== */
.section-cta {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
}

.cta-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="%23b08d57" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-lighter);
    margin-bottom: 50px;
}

/* ===== MEDIA HUB SECTION ===== */
.section-media {
    background: var(--white-off);
    padding: 120px 0;
}

.media-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--black-light);
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

.media-description {
    text-align: center;
    margin: 40px 0 60px;
}

.media-description p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-light);
}

.media-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
}

.media-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.media-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
}

.media-icon.naver {
    background: #03C75A;
}

.media-icon.youtube {
    background: #FF0000;
}

.media-icon.website {
    background: var(--gold);
}

.media-icon i,
.media-icon .icon-text {
    color: var(--white);
    font-size: 20px;
}

.icon-text {
    font-family: var(--font-sans);
    font-weight: 700;
}

.media-info {
    flex: 1;
}

.media-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black-light);
    margin-bottom: 5px;
}

.media-link-text {
    font-size: 0.8125rem;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.media-desc {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.media-arrow {
    color: var(--gray-light);
    font-size: 0.875rem;
    transition: var(--transition);
}

.media-item:hover .media-arrow {
    color: var(--gold);
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    background: var(--black-soft);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: var(--black);
}

.contact-text h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-text p {
    font-size: 0.9375rem;
    color: var(--gray-lighter);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--black-light);
    padding: 50px;
    border: 1px solid rgba(176, 141, 87, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--black-medium);
    border: 1px solid rgba(176, 141, 87, 0.2);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select {
    cursor: pointer;
    color: var(--gray-light);
}

.form-group select option {
    background: var(--black-medium);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.checkbox-group {
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9375rem;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(176, 141, 87, 0.1);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-light);
}

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

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--gray-lighter);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 141, 87, 0.3);
    color: var(--gold);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.social-icon {
    font-weight: 700;
    font-size: 14px;
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container,
    .nav-container,
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .signature-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .frame-accent {
        display: none;
    }
    
    .signature-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content {
        padding: 0 25px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title,
    .about-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .media-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .media-item {
        padding: 20px 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 0.8125rem;
    }
    
    .section-title,
    .about-title,
    .cta-title,
    .contact-title {
        font-size: 1.75rem;
    }
    
    .media-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .signature-card {
        padding: 40px 30px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        min-width: 100px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
}

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

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

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}