/* CSS Variables */
:root {
    --black: #231F20;
    --gold: #DBA510;
    --white: #FFFFFF;
    --accent-red: #E82125;
    --sage-rose: #F282A9;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --shadow: 0 4px 20px rgba(35, 31, 32, 0.1);
    --shadow-hover: 0 8px 30px rgba(35, 31, 32, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: var(--sage-rose);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

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

/* Hamburger Menu Animation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger to X Animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Optional: Add hover effect */
.nav-toggle:hover .bar {
    background: var(--gold);
}

.nav-toggle.active:hover .bar {
    background: var(--accent-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%),
        url('images/hero.png') center/cover no-repeat;
    backdrop-filter: blur(2px);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

/* Sections */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* About Preview Section */
.about-preview {
    padding: 8rem 0; /* Increased from 7rem 0 for more vertical spacing */
    background: var(--gray-light);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Add horizontal padding to the grid container */
}

.about-text-content {
    text-align: left;
    padding: 2rem; /* Add padding around the text content */
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

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

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.about-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem; /* Increased from 2rem for more padding around the image */
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.instagram-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    grid-column: 1 / -1;
}

.instagram-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.instagram-placeholder p {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 30px;
}

/* Latest Blog */
.latest-blog {
    padding: 5rem 0;
    background: var(--gray-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.7;
}

.blog-date {
    color: var(--gold);
    font-weight: 500;
}

.blog-read-time {
    color: var(--black);
    opacity: 0.7;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 600;
    line-height: 1.3;
}

.blog-excerpt {
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-author {
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.7;
    font-style: italic;
}

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

/* Newsletter */
.newsletter {
    padding: 5rem 0;
    background: var(--black);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--gold);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    letter-spacing: -0.3px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Instagram Feed */
.instagram-feed {
    padding: 5rem 0;
    background: var(--gray-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.instagram-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.instagram-post iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

.instagram-post video {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
    object-fit: cover;
    background: #f0f0f0;
}

.instagram-post {
    position: relative;
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.view-on-instagram {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-on-instagram:hover {
    color: var(--gold);
}

.view-on-instagram i {
    font-size: 1.1rem;
}

/* Enhanced Mobile Responsive Design */

/* Improved Base Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Enhanced Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 65px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 280px;
        text-align: center;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        border-radius: 0 0 0 15px;
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Enhanced Hero Section */
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .hero-container {
        padding: 0 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Enhanced About Section */
    .about-preview {
        padding: 4rem 0;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text-content {
        text-align: center;
        order: 2;
        padding: 0 10px;
    }

    .about-text-content .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.4px;
    }

    .about-text-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .about-image-content {
        order: 1;
        padding: 1rem;
    }

    .about-image {
        max-width: 280px;
        border-radius: 15px;
    }

    /* Enhanced Instagram Feed */
    .instagram-feed {
        padding: 4rem 0;
    }

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

    .instagram-post {
        max-width: 100%;
        margin: 0 auto;
    }

    .instagram-post iframe {
        height: 480px;
        border-radius: 12px;
    }

    .instagram-post video {
        height: 480px;
        border-radius: 12px;
    }

    .video-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 8px;
    }

    .view-on-instagram {
        font-size: 0.8rem;
    }

    .instagram-placeholder {
        padding: 40px 20px;
        margin: 0 10px;
    }

    .instagram-placeholder i {
        font-size: 2.5rem;
    }

    /* Enhanced Blog Section */
    .latest-blog {
        padding: 4rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Enhanced Newsletter */
    .newsletter {
        padding: 4rem 0;
    }

    .newsletter h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .newsletter p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .newsletter-form input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    .newsletter-form .btn {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Enhanced Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        padding: 0 20px;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }

    /* Enhanced Button Styles */
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: -0.3px;
    }
}

/* Enhanced Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Small Mobile Hero */
    .hero {
        min-height: 85vh;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        letter-spacing: -0.6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 5px;
    }

    .hero-buttons .btn {
        max-width: 260px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Small Mobile About */
    .about-preview {
        padding: 3rem 0;
    }

    .about-content-grid {
        gap: 2rem;
    }

    .about-text-content {
        padding: 0 5px 2.5rem 5px; /* Added bottom padding for small mobile */
    }

    .about-text-content .section-title {
        font-size: 1.8rem;
    }

    .about-text-content .btn {
        margin-bottom: 1.5rem;
    }

    .about-image-content {
        padding: 2.5rem 1rem 1rem 1rem; /* Increased top padding for small mobile */
    }

    .about-image {
        max-width: 250px;
    }

    /* Small Mobile Instagram */
    .instagram-feed {
        padding: 3rem 0;
    }

    .instagram-post iframe {
        height: 320px;
    }

    .instagram-post video {
        height: 320px;
    }

    .instagram-placeholder {
        padding: 30px 15px;
    }

    /* Small Mobile Blog */
    .latest-blog {
        padding: 3rem 0;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    /* Small Mobile Newsletter */
    .newsletter {
        padding: 3rem 0;
    }

    .newsletter h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Extra Small Mobile */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.4px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .about-image {
        max-width: 220px;
    }

    .instagram-post iframe {
        height: 280px;
    }

    .instagram-post video {
        height: 280px;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: -0.2px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-brand-text {
        font-size: 1.2rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px; /* iOS recommended touch target */
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading animations */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

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