/* Base Styles */
:root {
    --primary-color: #d4af37; /* Base Gold */
    --gold-light: #f9e7a1; /* Light Gold */
    --gold-medium: #d4af37; /* Medium Gold */
    --gold-dark: #aa8c2c; /* Dark Gold */
    --gold-deep: #85702a; /* Deep Gold */
    --secondary-color: #121212; /* Deep Black */
    --accent-color: #f5eed4; /* Light Gold */
    --light-color: #f9f8f4; /* Off White */
    --dark-color: #000000; /* Pure Black */
    --text-color: #222222; /* Dark Text */
    --gray-color: #e0e0e0; /* Light Gray */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --gold-gradient: linear-gradient(145deg, var(--gold-light) 0%, var(--gold-medium) 48%, var(--gold-dark) 80%, var(--gold-medium) 100%);
    --gold-gradient-hover: linear-gradient(145deg, var(--gold-light) 0%, var(--gold-medium) 38%, var(--gold-dark) 68%, var(--gold-deep) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-image: var(--gold-gradient);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-image: var(--gold-gradient-hover);
    background-color: transparent;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 140, 44, 0.4);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

.tagline {
    font-size: 0.875rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-image: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.85), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg, 
            rgba(18, 18, 18, 0.2), 
            rgba(18, 18, 18, 0.2) 1px, 
            transparent 1px, 
            transparent 10px
        );
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0) 40%,
        rgba(212, 175, 55, 0.08) 50%,
        rgba(212, 175, 55, 0) 60%,
        rgba(212, 175, 55, 0) 100%
    );
    transform: rotate(30deg);
    animation: heroShimmer 20s infinite linear;
    z-index: 2;
}

@keyframes heroShimmer {
    0% {
        transform: rotate(30deg) translateX(-30%) translateY(-30%);
    }
    100% {
        transform: rotate(30deg) translateX(30%) translateY(30%);
    }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 3;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-image: var(--gold-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.hero .btn {
    border: 1px solid transparent;
    background-size: 200% auto;
    animation: goldShimmer 4s ease infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    color: var(--secondary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-image: var(--gold-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.left-align {
    text-align: left;
}

.left-align h2::after {
    left: 0;
    transform: none;
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-color);
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-image: var(--gold-gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--dark-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: flex-start;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.image-placeholder {
    height: 450px;
    background: url('https://source.unsplash.com/800x1000/?beauty,salon') no-repeat center center/cover;
    border-radius: 10px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Gallery Section */
.gallery {
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.gallery-image {
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.image-1 {
    background: url('https://source.unsplash.com/600x400/?facial,beauty') no-repeat center center/cover;
}

.image-2 {
    background: url('https://source.unsplash.com/600x400/?manicure,beauty') no-repeat center center/cover;
}

.image-3 {
    background: url('https://source.unsplash.com/600x400/?hair,salon') no-repeat center center/cover;
}

.image-4 {
    background: url('https://source.unsplash.com/600x400/?massage,spa') no-repeat center center/cover;
}

.image-5 {
    background: url('https://source.unsplash.com/600x400/?wellness,beauty') no-repeat center center/cover;
}

.image-6 {
    background: url('https://source.unsplash.com/600x400/?beauty,salon') no-repeat center center/cover;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 0 20px;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.quote-icon {
    font-size: 2rem;
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-color);
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-image: var(--gold-gradient);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--dark-color);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.info-content h4 {
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-image: var(--gold-gradient);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Form styling */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

/* Date picker and label styling */
.date-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #757575;
    pointer-events: none;
    transition: var(--transition);
    font-size: 1rem;
    background: white;
    padding: 0 5px;
    z-index: 1;
}

.date-label.date-focused,
.date-label.date-selected {
    top: 0px;
    font-size: 0.825rem;
    color: var(--gold-medium);
}

.form-group input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    cursor: pointer;
    padding-right: 30px;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23d4af37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 16px;
    color: transparent;
    transition: color 0.2s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.form-group input[type="date"].has-value,
.form-group input[type="date"]:focus {
    color: var(--text-color);
    outline: none;
    border-color: var(--gold-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-medium);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.footer-logo p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer h4 {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright p {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .about-content,
    .contact-info {
        padding: 0;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

/* Featured Treatments Section */
.featured {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0;
}

.featured .section-header h2 {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.featured .section-header p {
    color: var(--light-color);
}

.featured-treatments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.featured-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.featured-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.featured-item h3 {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 15px;
}

.featured-item p {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-text {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    color: white;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Add subtle metallic animation */
@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo h1, 
.featured .section-header h2,
.featured-item h3,
.footer-logo h3,
.footer h4,
.btn-text,
.stat-number {
    background-size: 200% auto;
    animation: goldShimmer 4s ease infinite;
}

/* Instagram Feed Section */
.section-subheader {
    text-align: center;
    margin: 60px 0 30px;
}

.section-subheader h3 {
    color: transparent;
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.section-subheader p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.insta-link {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
    transition: var(--transition);
    background-image: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.insta-link:hover {
    opacity: 0.8;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.instagram-post {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
    height: 450px;
    position: relative;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.instagram-placeholder {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95));
    color: var(--accent-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.instagram-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background-image: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

.instagram-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

/* Add pulsing animation for loading indicator */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.instagram-media {
    width: 100% !important;
    height: 100% !important;
    max-width: 540px !important;
    min-width: 100% !important;
    margin: 0 !important;
    border: none !important;
}

/* Responsive Instagram Feed */
@media (max-width: 992px) {
    .instagram-feed {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .instagram-post {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .instagram-feed {
        grid-template-columns: 1fr;
    }
    
    .instagram-post {
        height: 450px;
    }
}

/* About Section Instagram Embed */
.about-insta-post {
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background-color: white;
    position: relative;
}

.about-insta-post .instagram-media {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 10px !important;
}

/* Custom Instagram Embed Styling */
.instagram-post, .about-insta-post {
    position: relative;
}

/* This attempts to customize Instagram's play button */
.instagram-post::after, .about-insta-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none; /* Let clicks through to the actual iframe */
}

/* Customize Instagram embed appearance */
iframe.instagram-media {
    background-color: transparent !important;
}

/* Make Instagram placeholder look nice */
.instagram-placeholder {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95));
    color: var(--accent-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

/* Add a subtle shimmer effect to Instagram embeds */
.instagram-post, .about-insta-post {
    position: relative;
    overflow: hidden;
}

.instagram-post::before, .about-insta-post::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerEffect 4s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-insta-post {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .about-insta-post {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .about-insta-post {
        height: 450px;
    }
}

/* Additional Instagram Styling for loaded embeds */
.instagram-loaded {
    position: relative;
    z-index: 1;
}

/* These styles attempt to minimize the prominence of the Instagram play button */
.instagram-loaded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 10;
    pointer-events: none;
}

/* Apply a subtle gold overlay to match the site's metallic theme */
.instagram-loaded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
    border-radius: 10px;
}

/* Give embedded posts a proper border to match the site's theme */
.instagram-loaded iframe {
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Enhance hover effects */
.instagram-post:hover, .about-insta-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Special treatment for the about section Instagram post */
.about-insta-post.instagram-loaded {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background-image: var(--gold-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.about-insta-post.instagram-loaded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0) 20%, 
        rgba(212, 175, 55, 0) 80%,
        rgba(212, 175, 55, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
    border-radius: 8px;
}

/* Create a subtle metallic edge */
.about-insta-post::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.8;
}

/* Additional effects to make the Instagram embeds feel more integrated with the site */
@media (min-width: 768px) {
    .about-insta-post.instagram-loaded iframe {
        transform: scale(1.01);
        transition: transform 0.5s ease;
    }
    
    .about-insta-post.instagram-loaded:hover iframe {
        transform: scale(1.03);
    }
    
    .about-insta-post.instagram-loaded:hover::before {
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

/* WhatsApp Section Styles */
.whatsapp-section {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.whatsapp-section h4 {
    margin-bottom: 10px;
    color: #fff;
}

.whatsapp-section p {
    margin-bottom: 15px;
    color: #ccc;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
} 