* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --accent-color: #ff6b6b;
}

/* Mobile Optimizations */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure touch targets are at least 44px tall */
button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color), #5c2e0a);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: unset;
    min-width: unset;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Actions wrapper (sound btn + hamburger) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Sound Toggle Button */
.sound-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-height: unset;
    min-width: unset;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sound-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.12);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.55);
}

.sound-btn.playing {
    animation: sound-pulse 2.5s ease-in-out infinite;
}

.sound-btn.muted {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    animation: none;
}

.sound-btn.muted:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
}

@keyframes sound-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(212, 175, 55, 0.5); }
    50%  { box-shadow: 0 0 0 7px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0   rgba(212, 175, 55, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Services Section */
.services-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-section h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.services-list li {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    padding: 1.1rem 1.3rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    flex: 1 1 180px;
    max-width: 230px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.services-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
}

/* Offerings Section */
.offerings {
    padding: 80px 20px;
    background-color: white;
}

.offerings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Offerings Wrapper */
.offerings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.offerings-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offering-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.offerings-content {
    display: flex;
    flex-direction: column;
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--secondary-color), #5c2e0a);
    color: white;
}

th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

tbody tr {
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

tbody tr:last-child td {
    border-bottom: none;
}

table th:nth-child(3),
table td:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.offering-info {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.offering-info p {
    color: var(--text-dark);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fdf6e3 0%, var(--light-bg) 100%);
}

.instagram-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.insta-handle {
    color: #c13584;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.insta-handle:hover {
    color: #833ab4;
    min-height: unset;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 700px;
    gap: 1rem;
    margin: 2.5rem 0 2rem;
    align-items: start;
}

.insta-embed-wrap {
    width: 100%;
    min-width: 0;
    height: 700px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    background: #fff;
}

/* Transparent overlay — intercepts first click to mute music, then removes itself */
.insta-click-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
    background: transparent;
}

/* Force the Instagram blockquote to fill its grid cell */
.insta-embed-wrap .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
}

.instagram-cta {
    text-align: center;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    min-height: unset;
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(220, 39, 67, 0.48);
    background: linear-gradient(135deg, #bc1888, #cc2366, #dc2743, #e6683c, #f09433);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #5c2e0a);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-person {
    font-size: 1.1rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-note {
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.95;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.email-button-container {
    margin-bottom: 2rem;
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-color), #c9a227);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e0c160, #d4af37);
}

.email-btn:active {
    transform: translateY(-1px);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

#emailDisplay {
    color: var(--primary-color);
    font-weight: 600;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 29, 80, 0.4);
    background: linear-gradient(135deg, #fd1d1d, #e1306c);
}

.social-btn:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offerings-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offering-photo {
        max-width: 100%;
    }

    .hero {
        padding: 100px 20px;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    /* Hamburger visible, nav hidden by default */
    .hamburger {
        display: flex;
    }

    /* Nav dropdown overlays content — no layout shift */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        flex-direction: column;
        gap: 0;
        padding: 0.2rem 0 0.4rem;
        background: linear-gradient(160deg, #6b2f08, #8b4513);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.6rem 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.95rem;
        min-height: 40px;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .about h2,
    .offerings h2,
    .instagram-section h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about,
    .offerings,
    .instagram-section,
    .contact {
        padding: 60px 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .services-section {
        padding: 1.5rem;
    }

    .services-list {
        gap: 0.8rem;
    }

    .services-list li {
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
    }

    th, td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    table {
        font-size: 0.85rem;
    }

    .whatsapp-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .social-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .offering-info {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.15rem;
    }

    .hero {
        padding: 80px 15px;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .about,
    .offerings,
    .instagram-section,
    .contact {
        padding: 40px 15px;
    }

    .about h2,
    .offerings h2,
    .instagram-section h2,
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0 1.5rem;
    }

    .insta-follow-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .about > .container > p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 1.2rem;
        gap: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .services-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .services-list {
        gap: 0.7rem;
    }

    .services-list li {
        flex: 1 1 140px;
        max-width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .offerings-wrapper {
        gap: 1rem;
    }

    .offering-photo {
        max-width: 100%;
        border-radius: 10px;
    }

    /* Pricing table → card layout on small screens */
    .pricing-table table { display: block; }
    .pricing-table thead { display: none; }
    .pricing-table tbody { display: block; }

    .pricing-table tr {
        display: block;
        border: 1px solid #e8d5a3;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
        background: white;
    }

    .pricing-table td {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.65rem 0.8rem;
        border-bottom: 1px solid #f5edd5;
        font-size: 0.87rem;
        line-height: 1.4;
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td::before {
        font-weight: 700;
        color: var(--secondary-color);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        min-width: 76px;
        flex-shrink: 0;
        padding-top: 2px;
    }

    .pricing-table td:nth-child(1)::before { content: "Offering:"; }
    .pricing-table td:nth-child(2)::before { content: "Desc:"; }
    .pricing-table td:nth-child(3)::before { content: "Price:"; }
    .pricing-table td:nth-child(4)::before { content: "Details:"; }

    .pricing-table {
        margin-bottom: 1rem;
    }

    .offering-info {
        padding: 1rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .whatsapp-btn,
    .social-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        border-radius: 25px;
    }

    .contact-person {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.8rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .contact-note {
        margin-top: 1rem;
        font-size: 0.85rem;
    }

    .social-links p {
        font-size: 0.9rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.2rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 360px) {
    .nav-brand {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .about h2,
    .offerings h2,
    .contact h2 {
        font-size: 1.3rem;
    }

    th, td {
        padding: 0.4rem;
        font-size: 0.65rem;
    }

    .whatsapp-btn,
    .social-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-info p,
    .contact-form p {
        font-size: 0.85rem;
    }
}
