/* Casa Festi - Main Stylesheet */

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Color Variables - New Clean White Design */
:root {
    --primary-color: #54280d;          /* Dark brown */
    --primary-light: #fc9553;          /* Light orange */
    --secondary-color: #54280d;        /* Dark brown for contrast */
    --accent-color: #fc9553;           /* Light orange accent */
    --text-dark: #333333;              /* Dark grey for text */
    --text-light: #fff;                /* White text */
    --text-muted: #666666;             /* Muted grey text */
    --background-white: #ffffff;       /* Pure white background */
    --background-light: #fafafa;       /* Very light grey */
    --border-color: #e8e8e8;           /* Light border */
    --shadow: 0 2px 20px rgba(84, 40, 13, 0.08);
    --shadow-hover: 0 4px 30px rgba(84, 40, 13, 0.12);
    --gradient-primary: linear-gradient(135deg, #54280d 0%, #fc9553 100%);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

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

.nav-logo h2 {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin: 0;
    font-weight: 700;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-style: italic;
    display: block;
    margin-top: -0.5rem;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section - Clean White Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    background: var(--background-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(162, 170, 51);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title-main {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    display: block;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--text-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    text-align: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin: 0.5rem auto;
}

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Main Description Section */
.main-description {
    background: var(--background-white);
}

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

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

.description-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Accommodations Section */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.accommodation-card {
    background: var(--background-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card-tag {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.amenities {
    list-style: none;
    margin-top: 1.5rem;
}

.amenities li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.amenities li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Location Section */
.location {
    background: var(--background-white);
}

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

.location-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-icon {
    font-size: 2rem;
    min-width: 60px;
}

.location-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.map-placeholder {
    background: var(--border-color);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.interactive-map {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    pointer-events: auto;
}

/* About Section */
.about {
    background: var(--background-light);
}

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

.about-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Family Photo */
.family-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin: 3rem 0;
}

.family-photo {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
}

.family-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.family-image:hover {
    transform: scale(1.02);
}

/* Family Story */
.family-story {
    flex: 1;
}

.family-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.family-story p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background: var(--background-light);
}

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

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.whatsapp-qr {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    background: white;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--primary-dark);
}

/* Form Styles */
.form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--background-white);
    color: var(--text-dark);
    padding: 4rem 0 3rem;
    text-align: center;
    border-top: 3px solid var(--primary-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-light);
}

.footer-brand-text h3 {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand-text p {
    margin: 0;
    font-style: italic;
    opacity: 0.9;
    color: var(--text-dark);
}

.footer-info {
    text-align: right;
}

/* Contact Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 6rem 0;
    background: var(--background-white);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-info {
    max-width: 600px;
    text-align: center;
}

.contact-info h2 {
    color: #8B5FBF;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    color: #333;
}

.contact-details a {
    color: #8B5FBF;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #8B5FBF;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5FBF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-map {
    margin-top: 4rem;
}

.contact-map h3 {
    color: #8B5FBF;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
    }

    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-icon {
        margin-right: 0.75rem;
        font-size: 1.25rem;
    }

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

    .footer-logo {
        justify-content: center;
    }

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

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

    .description-grid {
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .family-content {
        flex-direction: column;
        gap: 2rem;
    }

    .family-photo {
        flex: none;
    }

    .family-image {
        max-width: 100%;
        border-radius: 10px;
    }

    .family-story p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .interactive-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .card-content,
    .form {
        padding: 1.5rem;
    }

    /* Extra small screens - contact methods */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .contact-method {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .contact-icon {
        margin-right: 0.75rem;
        font-size: 1.25rem;
        min-width: 32px;
    }

    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Footer adjustments for small screens */
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

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

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

/* Extra small phones */
@media (max-width: 360px) {
    .contact-method {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-self: center;
    }

    .contact-details {
        width: 100%;
        text-align: center;
    }

    /* Footer for very small screens */
    .footer-logo {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
}

/* Animations & Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Instagram Section Styles */
.instagram-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.instagram-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.instagram-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.25);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.instagram-feed {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.instagram-placeholder {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
    max-width: 500px;
    margin: 0 auto;
}

.instagram-placeholder h3 {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
    color: white;
}

.instagram-follow-btn::before {
    content: "📷";
}

/* Instagram Responsive */
@media (max-width: 768px) {
    .instagram-placeholder {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .instagram-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .instagram-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}
