:root {
    --primary-color: #c17a4a;
    --secondary-color: #f5e6d9;
    --accent-color: #8b4513;
    --dark-color: #3a2c1c;
    --light-color: #fff8f0;
    --text-color: #333333;
    --gray-color: #a0a0a0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-handwriting: 'Dancing Script', cursive;

    --container-max: 1200px;
    --container-padding: 20px;
    --header-height: 200px;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 248, 240, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

.logo-img {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo-text .role {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer logo specific */
.logo-img-footer {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

footer .logo-text .name {
    color: white;
    font-size: 28px;
}

footer .logo-text .role {
    color: var(--primary-color);
    font-size: 13px;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

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

.header-social-links a {
    color: var(--dark-color);
    font-size: 22px;
    transition: color 0.3s;
}

.header-social-links a:hover {
    color: var(--primary-color);
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section - UPDATED */
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.7);
}

.hero-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-text {
    max-width: 600px;
    padding: 50px;
    text-align: right;
}

.hero-quote {
    font-family: var(--font-handwriting);
    font-size: 46px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.hero-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.8;
    margin-right: 10px;
}

.hero-quote::after {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.8;
    margin-left: 10px;
}

/* Home Showcase Section */
.home-showcase {
    margin-top: var(--header-height);
    padding: 80px 0 100px;
    background-color: var(--light-color);
}

/* Elegant Intro */
.showcase-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.intro-portrait {
    flex-shrink: 0;
}

.intro-portrait img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-portrait img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.intro-details {
    flex: 1;
}

.intro-tagline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.intro-bio {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.intro-cv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, transform 0.3s;
}

.intro-cv-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.intro-cv-link i {
    font-size: 18px;
}

/* Showreel Section */
.showcase-reels {
    padding-top: 10px;
}

.showcase-reels .section-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.showcase-reels .section-title::after {
    width: 50px;
    height: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .home-showcase {
        padding: 60px 0 80px;
    }

    .showcase-intro {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        margin-bottom: 50px;
    }

    .intro-portrait img {
        width: 220px;
        height: 293px;
    }

    .intro-tagline {
        font-size: 12px;
    }

    .intro-bio {
        font-size: 15px;
    }

    .showcase-reels .section-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .intro-portrait img {
        width: 180px;
        height: 240px;
    }

    .intro-bio {
        font-size: 14px;
    }

    .showcase-reels .section-title {
        font-size: 20px;
    }
}

/* Section Common Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title-right {
    text-align: right;
}

.section-title-right::after {
    left: auto;
    right: 0;
    transform: none;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.section-title-small {
    font-size: 24px;
    margin-bottom: 40px;
}

.section-title-small::after {
    width: 50px;
    height: 2px;
    bottom: -12px;
}

/* Audio Section */
.audio-section {
    background-color: var(--secondary-color);
    padding: 60px 0 50px;
}

.audio-section .section-title {
    margin-bottom: 45px;
}

.audio-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.audio-card-content {
    padding: 30px 25px;
    text-align: center;
}

.audio-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.audio-card-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.audio-card-content audio {
    width: 100%;
}

.audio-coming-soon {
    font-family: var(--font-body);
    font-size: 15px;
    color: #999;
    font-style: italic;
    padding: 10px 0;
}

/* Acting Resume Section */
.resume-section {
    background-color: var(--secondary-color);
}

.resume-category {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent-color);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.resume-category:first-of-type {
    margin-top: 0;
}

.resume-category i {
    margin-right: 10px;
    color: var(--primary-color);
}

.resume-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

/* When a future image is added inside .resume-thumbnail */
.resume-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.resume-item:hover .resume-thumbnail img {
    transform: scale(1.05);
}

/* Hide icon/badge when image is present */
.resume-thumbnail:has(img) .resume-icon,
.resume-thumbnail:has(img) .resume-badge {
    display: none;
}

.resume-icon {
    color: white;
    font-size: 48px;
    opacity: 0.9;
    transition: transform 0.3s;
}

.resume-badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
}

.resume-item:hover .resume-icon {
    transform: scale(1.1);
}

.resume-detail {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.resume-detail strong {
    color: var(--text-color);
}

/* Resume Placeholder / Coming Soon */
.resume-thumbnail.placeholder {
    background-color: #e8ddd3;
}

.resume-placeholder .resume-icon {
    color: var(--primary-color);
    opacity: 0.4;
}

.resume-coming-soon {
    font-style: italic;
    color: #999;
}

/* Bio Section */
.bio-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.bio-image {
    flex: 0 0 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.bio-image img:hover {
    transform: scale(1.03);
}

.bio-text {
    flex: 1;
}

.bio-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-color);
}

/* Audio & Video Sections */
.media-section {
    background-color: var(--secondary-color);
}

.media-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.media-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.media-info {
    padding: 25px;
}

.media-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.media-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 15px;
}

/* Video Section Styles */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.video-item:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Video Placeholder / Coming Soon */
.video-placeholder .video-thumbnail {
    background-color: #e8ddd3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder .video-play-button {
    color: var(--primary-color);
    opacity: 0.4;
}

.video-coming-soon {
    font-style: italic;
    color: #999;
}

/* Gallery Section */
#gallery {
    padding-top: 60px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 350px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-placeholder {
    background-color: #e8ddd3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.gallery-placeholder i {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.3;
}

.gallery-placeholder:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

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

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

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

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--gray-color);
}

/* Lightbox Gallery Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2001;
}

.lightbox-nav:hover {
    background-color: rgba(193, 122, 74, 0.8);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --header-height: 150px;
    }

    .logo-img {
        height: 120px;
    }

    .hero-text {
        max-width: 550px;
        padding: 45px;
    }

    .hero-quote {
        font-size: 40px;
    }

    .video-play-button {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 140px;
    }

    .logo-img {
        height: 100px;
    }

    .hero-text {
        max-width: 500px;
        padding: 40px;
    }

    .hero-quote {
        font-size: 36px;
    }

    .hero-quote::before,
    .hero-quote::after {
        font-size: 50px;
    }

    .bio-content {
        flex-direction: column;
    }

    .bio-image, .bio-text {
        width: 100%;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        height: 80px;
    }

    .logo-text .name {
        font-size: 22px;
    }

    .logo-text .role {
        font-size: 10px;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-text {
        max-width: 90%;
        margin: 0 auto;
        padding: 35px;
        text-align: center;
    }

    .hero-quote {
        font-size: 32px;
    }

    .hero-quote::before,
    .hero-quote::after {
        font-size: 45px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .logo-img-footer {
        height: 80px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-caption {
        font-size: 16px;
        padding: 10px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -30px;
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 110px;
    }

    .logo-img {
        height: 70px;
    }

    .logo-text .name {
        font-size: 18px;
    }

    .logo-text .role {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero-text {
        max-width: 95%;
        padding: 25px;
    }

    .hero-quote {
        font-size: 28px;
    }

    .hero-quote::before,
    .hero-quote::after {
        font-size: 40px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .media-container {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animations for grid items */
.media-item.animate-on-scroll,
.gallery-item.animate-on-scroll {
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
}


/* Section title animation */
.section-title.animate-on-scroll {
    transform: translateY(20px);
}

/* Bio image animation */
.bio-image.animate-on-scroll {
    transform: translateX(-30px);
}

.bio-image.animate-on-scroll.animated {
    transform: translateX(0);
}

/* Bio text animation */
.bio-text.animate-on-scroll {
    transform: translateX(30px);
}

.bio-text.animate-on-scroll.animated {
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}
