/* Custom Font Loading */
@font-face {
    font-family: 'TheNautiGal';
    src: url('TheNautiGalROB.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Colors inspired by the business card */
    --primary-blue: #4A90A4;
    --secondary-blue: #6BB6C7;
    --light-blue: #A8D5E2;
    --accent-green: #7FB069;
    --dark-text: #2C3E50;
    --light-text: #5D6D7E;
    --cream: #F8F6F0;
    --white: #FFFFFF;
    --shadow: rgba(74, 144, 164, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 2rem 1rem;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: 1rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition-smooth);
}

/* Navigation Controls Container */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 80px;
    justify-content: space-between;
    font-family: var(--font-body);
}

.language-toggle:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.language-toggle .fas {
    font-size: 0.8rem;
}

.language-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.language-selector.active .language-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border: 1px solid var(--primary-blue);
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(74, 144, 164, 0.1);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--dark-text);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.lang-option:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.lang-option.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hinh-nen-xanh-mat-bang-khoi.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 164, 0.2);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix in="colorNoise" type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-name {
    display: block;
    font-family: 'TheNautiGal', cursive;
    font-style: normal;
    font-weight: normal;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.hero-surname {
    display: block;
    font-family: 'TheNautiGal', cursive;
    font-weight: normal;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.hero-scroll span {
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 3px;
    height: 60px;
    background: var(--white);
    position: relative;
    animation: bounce 2s infinite;
    border-radius: 2px;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--white);
    animation: arrowBounce 2s infinite;
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Featured Works */
.featured-works {
    padding: var(--section-padding);
    background: var(--white);
}

.featured-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.featured-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px var(--shadow) !important;
}

.featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.featured-info {
    padding: 2rem;
}

.work-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.work-details {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.work-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
    text-align: right;
}

.work-description {
    color: var(--dark-text);
    line-height: 1.7;
}

/* Gallery */
.gallery {
    padding: var(--section-padding);
    background: var(--cream);
}

.gallery-container {
    position: relative;
    margin-top: 1rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.gallery-info h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 0;
}

.gallery-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.gallery-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 100;
}

.gallery-btn {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 101;
    opacity: 0.8;
    position: relative;
}

.gallery-btn:hover {
    opacity: 1;
}

.gallery-btn:active {
    opacity: 0.7;
}

.gallery-prev {
    margin-left: -15px;
}

.gallery-next {
    margin-right: -15px;
}

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

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-description p {
    margin-bottom: 2rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.about-details {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.detail-item h4 {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--light-text);
}

.about-image {
    text-align: center;
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--cream);
}

.contact-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
    align-self: center;
    justify-self: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h4 {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    min-width: 40px;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 i {
    font-size: 1.6rem;
    color: var(--secondary-blue);
    transition: var(--transition-smooth);
}

.contact-item:hover h4 i {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.contact-item a {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 0;
    border-radius: 5px;
    position: relative;
}

.contact-item a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-smooth);
}

.contact-item a:hover::before {
    width: 100%;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background: var(--white);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    bottom: 60px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
    opacity: 0.8;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}

.modal-title-display {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.modal-info {
    display: none;
}

/* Make images clickable */
.featured-image img,
.gallery-item img {
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Tablet Styles */
@media (min-width: 768px) {
    :root {
        --section-padding: 2rem 2rem;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .gallery-item {
        flex: 0 0 320px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        margin-left: -17px;
    }
    
    .gallery-next {
        margin-right: -17px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .about-image {
        position: absolute;
        right: 0;
        top: 6rem;
        width: 400px;
    }
    
    .about-content {
        position: relative;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-details {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-info {
        gap: 1rem;
        align-self: center;
        justify-self: center;
    }
    
    /* Modal tablet styles */
    .modal-close {
        top: 35px;
        right: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .modal-nav {
        bottom: 80px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
    
    .modal-title-display {
        bottom: 80px;
        font-size: 1.3rem;
    }
    
    .modal-image {
        border-radius: 10px;
    }
}

/* Mobile Modal Styles */
@media (max-width: 767px) {
    /* Elena Kruk - twice bigger on mobile */

    .hero-title {
        font-size: clamp(8rem, 16vw, 16rem);
    }
    
    /* Remove horizontal padding for gallery on mobile */
    .gallery {
        padding: 2rem 0;
    }
    
    .gallery .container {
        padding: 0;
    }
    
    /* Larger language selector on mobile for better touch targets */
    .language-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 0.875rem;
        min-width: 85px;
    }
    
    .lang-option {
        padding: 0.7rem 0.8rem;
        font-size: 0.875rem;
    }
    
    /* Larger font for contact form inputs on mobile for better readability */
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
    
    .gallery-scroll {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .gallery-info {
        padding: 8px;
        text-align: center;
    }
    
    .gallery-info h4 {
        font-size: 1.15em;
        margin-bottom: 0;
    }
    
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .gallery-btn {
        width: 37px;
        height: 37px;
        font-size: 1.1rem;
    }
    
    .gallery-prev {
        margin-left: 7px;
    }
    
    .gallery-next {
        margin-right: 7px;
    }

    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-close {
        position: absolute;
        top: 25px;
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-nav {
        position: absolute;
        bottom: 50px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-prev {
        left: 5px;
    }
    
    .modal-next {
        right: 5px;
    }
    
    .modal-title-display {
        bottom: 50px;
        font-size: 1.1rem;
    }
    
    .modal-image {
        border-radius: 5px;
    }
    
    .modal-content {
        max-width: 98vw;
        max-height: 98vh;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    :root {
        --section-padding: 2rem 2rem;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item {
        flex: 0 0 350px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .gallery-prev {
        margin-left: -20px;
    }
    
    .gallery-next {
        margin-right: -20px;
    }
    
    .contact-info {
        gap: 1rem;
        align-self: center;
        justify-self: center;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
} 