/* CSS Reset & Variables */
:root {
    --honey-gold: #F5A623;
    --honey-dark-gold: #D97706;
    --honey-amber: #F97316;
    --honey-light: #FAF8F5;
    --honey-dark: #1C1917;
    --honey-muted: #78716C;
    --border-color: rgba(217, 119, 6, 0.15);
    --glass-bg: rgba(250, 248, 245, 0.85);
    --glass-border: rgba(217, 119, 6, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--honey-light);
    color: var(--honey-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header & Glassmorphism Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--honey-dark);
    gap: 10px;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--honey-dark-gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--honey-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

.nav-btn {
    background-color: var(--honey-dark-gold);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--honey-amber);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.nav-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero.hero-video-mode {
    background: none;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25)); */
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--honey-gold);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    background-color: var(--honey-dark-gold);
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--honey-amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

/* Grid Sections (Alternating Layout) */
.grid-section {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.section-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.text-card {
    padding: 10% 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--honey-light);
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--honey-dark-gold);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--honey-dark);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--honey-muted);
    margin-bottom: 35px;
    text-align: justify;
}

.dropcap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 12px;
    color: var(--honey-dark-gold);
    font-weight: 700;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--honey-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--honey-gold);
    padding-bottom: 6px;
    align-self: flex-start;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--honey-amber);
    border-color: var(--honey-amber);
    padding-left: 4px;
}

.learn-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover .arrow {
    transform: translateX(6px);
}

.image-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.image-card:hover .image-overlay {
    border-color: var(--honey-gold);
    background: rgba(0, 0, 0, 0.45);
}

.image-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.image-card:hover .image-title {
    transform: scale(1.03);
}

/* Footer Section */
.footer {
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 40px 30px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--honey-gold);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--honey-gold);
    padding-left: 4px;
}

.footer-right h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-right p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.subscribe-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--honey-gold);
    background: rgba(255, 255, 255, 0.12);
}

.btn-submit {
    background-color: var(--honey-dark-gold);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--honey-amber);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    border-color: var(--honey-gold);
    color: var(--honey-gold);
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-container {
        grid-template-columns: 1fr;
    }

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

    .text-card {
        padding: 60px 40px;
    }

    .image-card {
        min-height: 450px;
    }

    /* Ensure layout matches alternating pattern visually if stacked */
    /* Wait, the natural HTML order stacked is:
       S1: Text then Image
       S2: Image then Text
       S3: Text then Image
       S4: Image then Text
       S5: Text then Image
       This is fine! Stacked it will naturally flow: Text -> Image -> Image -> Text -> Text -> Image...
       Wait, if we stack it, it's better to show TEXT then IMAGE for every section, or keep HTML order.
       Actually, standard responsive design makes everything: Text -> Image.
       Let's implement grid column reordering on mobile!
    */
    .grid-section.alternate .section-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .nav {
        display: none;
        /* In a real app we'd have a hamburger, but keeping it simple for the landing page */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .image-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .image-title {
        font-size: 1.8rem;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Language Selector Styles */
#lang-selector-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.12);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey-dark);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

#lang-btn:hover {
    background-color: #FAF8F5;
    border-color: var(--honey-gold);
}

#lang-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 150px;
    background-color: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1100;
}

#lang-dropdown.show {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey-dark);
    text-decoration: none;
    text-align: left;
    transition: var(--transition);
}

.lang-option:hover {
    background-color: #FAF8F5;
    color: var(--honey-dark-gold);
}

.lang-option.active {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--honey-dark-gold);
}

/* Hide Google Translate topbar */
.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

#google_translate_element {
    display: none !important;
}

/* =============================================
   MID-PAGE BANNER
   ============================================= */
.mid-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mid-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(12, 10, 7, 0.78) 0%,
            rgba(28, 18, 4, 0.70) 40%,
            rgba(45, 25, 5, 0.82) 100%);
    z-index: 1;
}

/* Shimmer stripe on top */
.mid-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--honey-gold) 30%,
            #fff8e7 50%,
            var(--honey-gold) 70%,
            transparent 100%);
    z-index: 3;
    animation: shimmer-line 4s ease-in-out infinite;
}

/* Shimmer stripe on bottom */
.mid-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--honey-gold) 30%,
            #fff8e7 50%,
            var(--honey-gold) 70%,
            transparent 100%);
    z-index: 3;
    animation: shimmer-line 4s ease-in-out infinite reverse;
}

@keyframes shimmer-line {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.mid-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 900px;
    width: 100%;
}

.mid-banner-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
    animation: expand-line 2s ease-out forwards;
}

@keyframes expand-line {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

.mid-banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: banner-fade-up 1s ease-out both;
}

@keyframes banner-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mid-banner-part1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.mid-banner-part2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--honey-gold);
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Floating particles */
.mid-banner-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.mid-banner-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--honey-gold);
    opacity: 0;
    animation: float-particle 8s ease-in-out infinite;
}

.mid-banner-particles span:nth-child(1) {
    left: 10%;
    top: 30%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.mid-banner-particles span:nth-child(2) {
    left: 25%;
    top: 70%;
    animation-delay: 1.2s;
    animation-duration: 9s;
}

.mid-banner-particles span:nth-child(3) {
    left: 55%;
    top: 20%;
    animation-delay: 2.4s;
    animation-duration: 6s;
}

.mid-banner-particles span:nth-child(4) {
    left: 70%;
    top: 60%;
    animation-delay: 0.8s;
    animation-duration: 8s;
}

.mid-banner-particles span:nth-child(5) {
    left: 85%;
    top: 35%;
    animation-delay: 1.8s;
    animation-duration: 7s;
}

.mid-banner-particles span:nth-child(6) {
    left: 42%;
    top: 80%;
    animation-delay: 3s;
    animation-duration: 10s;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.5);
    }
}

@media (max-width: 768px) {
    .mid-banner {
        min-height: 300px;
        background-attachment: scroll;
    }

    .mid-banner-content {
        padding: 50px 24px;
        gap: 20px;
    }

    .mid-banner-part1,
    .mid-banner-part2 {
        font-size: 1.4rem;
    }
}

/* =============================================
   CERTIFICATIONS SECTION
   ============================================= */
.certifications-section {
    padding: 80px 40px;
    background-color: var(--honey-light);
    border-top: 1px solid var(--border-color);
}

.certifications-container {
    max-width: 1000px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.cert-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 140px;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.15);
}

.cert-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* =============================================
   MARKETS & PARTNERS SECTION
   ============================================= */
.markets-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.partners-marquee {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: #faf8f5;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }

    /* Scrolls half the width to loop seamlessly */
}

@media (max-width: 768px) {
    .cert-item {
        width: 150px;
        height: 120px;
    }

    .partner-item {
        width: 140px;
        height: 80px;
    }
}

/* =============================================
   IMAGE MODAL
   ============================================= */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 75vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

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

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 150px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--honey-gold);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
        max-width: 100%;
    }
}