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

:root {
    --gold: #F8B97E;
    --gold-dark: #E5A66F;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --light-gray: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    top: 0;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

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

.logo {
    font-family: 'Black Knight FLF', serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
    background-image: url('images/hero-image.jpg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero::after {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    }
}

/* Small mobile screens - use mobile-specific image */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        background-color: var(--black);
        background-image: url('images/hero-image-mobile.png');
        background-attachment: scroll;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/hero-image-mobile.png');
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .hero {
        background-color: var(--black);
        background-image: url('images/hero-image-mobile.png');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
    }
    
    .hero::after {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero .tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(90deg,
        var(--gold-dark) 0%,
        #faa076 15%,
        #faa076 25%,
        var(--gold) 40%,
        var(--gold-dark) 50%,
        #faa076 65%,
        #faa076 75%,
        var(--gold) 90%,
        var(--gold-dark) 100%);
    background-size: 200% 100%;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #000000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    animation: waveFlow 10s linear infinite;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-2px);
    animation: waveFlow 10s linear infinite, pulseGlow 2s ease-in-out infinite;
}

@keyframes waveFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(248, 185, 126, 0.6);
    }
    50% {
        box-shadow: 0 10px 40px rgba(248, 185, 126, 0.9);
    }
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
}

.about-text.animate {
    animation: slideInLeft 0.8s ease-out forwards;
}

.about-image {
    opacity: 0;
    transform: translateX(50px);
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
    border-radius: 10px;
}

.about-image.animate {
    animation: slideInRight 0.8s ease-out forwards;
}

.section-title {
    font-family: 'Black Knight FLF', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-weight: normal;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background: var(--dark-gray);
}

.instagram-feed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 2rem auto;
}

.instagram-post {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #222;
    border-radius: 8px;
}

.instagram-post.animate {
    animation: scaleIn 0.6s ease-out forwards;
}

.instagram-post::before {
    content: '📸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.1;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 1rem;
    color: white;
    font-size: 0.9rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Location Section */
.location {
    padding: 3rem 0;
    background: var(--black);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.map-container {
    width: 100%;
    height: 450px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    opacity: 0;
    transform: translateX(-50px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container.animate {
    animation: slideInLeft 0.8s ease-out forwards;
}

.static-map {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(248, 185, 126, 0.1) 35px,
            rgba(248, 185, 126, 0.1) 70px
        );
}

.map-content {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 185, 126, 0.4);
}

.shop-info {
    opacity: 0;
    transform: translateX(50px);
}

.shop-info.animate {
    animation: slideInRight 0.8s ease-out forwards;
}

.location-shop-title {
    font-family: 'Black Knight FLF', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: normal;
}

.info-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(248, 185, 126, 0.2);
}

.info-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section .icon {
    font-size: 1.5rem;
}

.info-section p {
    color: #ccc;
    line-height: 1.8;
}

.info-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section a:hover {
    color: var(--white);
}

/* Footer */
footer {
    padding: 2rem 0 1rem;
    background: var(--black);
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h2 {
    font-family: 'Black Knight FLF', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.footer-info h3 {
    font-family: 'Black Knight FLF', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.footer-info p {
    color: #999;
    margin-bottom: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Dividers */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
}

section:last-of-type::after,
footer::after {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--dark-gray);
    margin: 2% auto;
    padding: 3rem;
    border: 2px solid var(--gold);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    position: relative;
}

.success-content {
    text-align: center;
    padding: 4rem 3rem;
}

.success-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.close {
    color: var(--gold);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal h2 {
    font-family: 'Black Knight FLF', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: normal;
}

.modal-subtitle {
    color: #999;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--black);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

input[type="file"] {
    padding: 0.5rem;
    background: var(--black);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
    width: 100%;
}

.file-info {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

/* Slider styles */
.slider-container {
    margin-top: 1rem;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

/* Radio button styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--white);
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.radio-label:hover {
    color: var(--gold);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 185, 126, 0.4);
}

.cancel-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
/* Mobile CTA button full width */
@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Position hero content at bottom on mobile */
    .hero {
        display: flex;
        align-items: flex-end;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 1rem;
    }
    
    /* Fix nav positioning on mobile */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    nav.scrolled {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-height: 300px;
        margin-top: 2rem;
    }
    
    .about-image img {
        max-height: 300px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 5% auto;
    }

    .form-actions {
        flex-direction: column;
    }

    .cancel-btn {
        width: 100%;
    }

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

    .location-content {
        grid-template-columns: 1fr;
    }

    .static-map {
        height: 300px;
    }
    
    .info-card {
        height: auto;
        margin-top: 2rem;
    }

    /* Mobile specific for hero */
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                    url('banner.jpg') center/cover;
        background-position: center;
    }
}

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

/* Enhanced form validation styles */
.form-group {
    position: relative;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4444;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #44ff44;
}

.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Loading spinner for submit button */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid var(--black);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast notifications */
.error-toast,
.success-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    z-index: 3000;
    animation: slideUp 0.3s ease;
}

.error-toast {
    background: #ff4444;
}

.success-toast {
    background: #44ff44;
    color: var(--black);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Mobile keyboard optimization */
@media (max-height: 600px) and (max-width: 768px) {
    .modal-content {
        margin: 0;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    form {
        overflow-y: auto;
        flex: 1;
    }
}

/* File upload enhancement */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: block;
    padding: 0.8rem;
    background: var(--black);
    border: 2px dashed #333;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(248, 185, 126, 0.1);
}

.file-preview {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.file-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid var(--gold);
}

/* Instagram Loading State */
.instagram-loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Custom Instagram Widget Overrides for Elfsight */
.custom-instagram-widget {
    width: 100%;
    max-width: 100%;
}

/* Hide Elfsight branding and unnecessary elements */
/* JavaScript will handle branding removal - keeping minimal CSS */
.eapps-link,
.eapps-instagram-feed-title,
.eapps-instagram-feed-header,
.eapps-instagram-feed-follow-button,
.eapps-instagram-feed-posts-item-user,
.eapps-instagram-feed-posts-item-date,
.eapps-instagram-feed-posts-item-text,
.eapps-instagram-feed-posts-item-share,
.eapps-instagram-feed-popup-item-user,
.eapps-instagram-feed-popup-item-date,
.eapps-instagram-feed-popup-item-share {
    display: none !important;
}

/* Override Elfsight grid styles */
.eapps-instagram-feed-posts-grid {
    gap: 30px !important;
    padding: 0 !important;
}

.eapps-instagram-feed-posts-item {
    position: relative !important;
    background: var(--light-gray) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    aspect-ratio: 1 !important;
    border: 3px solid transparent !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease !important;
}

.eapps-instagram-feed-posts-item:hover {
    border-color: var(--gold) !important;
}

.eapps-instagram-feed-posts-item-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Override popup/lightbox styles - Completely disable Elfsight popup */
.eapps-instagram-feed-popup,
.eapps-instagram-feed-popup-overlay,
.eapps-instagram-feed-popup-container,
[class*="eapps-instagram-feed-popup"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Prevent body scroll-lock - AGGRESSIVE ENFORCEMENT */
body,
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: static !important;
}

body.eapps-instagram-feed-popup-open,
body.eapps-no-scroll,
html.eapps-instagram-feed-popup-open,
html.eapps-no-scroll,
body[style*="overflow: hidden"],
body[style*="overflow:hidden"],
html[style*="overflow: hidden"],
html[style*="overflow:hidden"],
body[style*="position: fixed"],
body[style*="position:fixed"] {
    overflow: auto !important;
    overflow-y: auto !important;
    position: static !important;
}

/* Block any overlay/backdrop elements */
.eapps-widget-overlay,
.eapps-instagram-feed-popup-backdrop,
[class*="popup-backdrop"],
[class*="popup-overlay"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Style Elfsight "Load more" button to match CTA button */
.eapps-instagram-feed-posts-grid-load-more,
.es-load-more-button {
    padding: 1.2rem 3.5rem !important;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark)) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 3rem !important;
    display: inline-flex !important;
    white-space: nowrap !important;
    min-width: auto !important;
    max-width: none !important;
    width: auto !important;
    text-align: center !important;
    height: auto !important;
    min-height: 60px !important;
    line-height: 1.6 !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
}

.eapps-instagram-feed-posts-grid-load-more:hover,
.es-load-more-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(248, 185, 126, 0.4) !important;
}

/* Style the button text span */
.eapps-instagram-feed-posts-grid-load-more-text {
    color: var(--black) !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline !important;
    line-height: inherit !important;
    vertical-align: middle !important;
}

/* Hide the default loading spinner - matches your brand better */
.eapps-instagram-feed-loader {
    display: none !important;
}

/* Center the Load more button on the page */
.eapps-instagram-feed-posts-grid {
    text-align: center !important;
}

/* Center button wrapper if Elfsight uses one */
.eapps-instagram-feed-posts-grid-load-more-wrapper,
div[class*="load-more-wrapper"] {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* Alternative manual Instagram grid (when not using Elfsight) */
.custom-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.custom-instagram-post {
    position: relative;
    background: var(--light-gray);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

.custom-instagram-post:hover {
    transform: translateY(-5px);
}

.custom-instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-instagram-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-instagram-post:hover .custom-instagram-overlay {
    opacity: 1;
}

.custom-instagram-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile responsive for custom Instagram grid */
@media (max-width: 768px) {
    .custom-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .eapps-instagram-feed-posts-grid {
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .custom-instagram-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* FAQ Accordion Styles */
.faq {
    padding: 5rem 0;
    background: var(--black);
}

.faq-header {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-header:hover .section-title {
    color: var(--gold-dark);
}

.faq-toggle-icon {
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-top: -0.5rem;
}

.faq-header.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--dark-gray);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(248, 185, 126, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-gray);
}

.accordion-content p {
    padding: 1.5rem;
    color: #ccc;
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Reveal animation helpers */
.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}