@font-face {
    font-family: 'Dancing Script';
    src: local('Dancing Script Regular'), local('Dancing Script'),
         url('../fonts/DancingScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-beige: #ead2bf;
    --brand-pearl: #f8f4f1;
    --brand-dark: #1f1b1a;
    --brand-accent: #c48c6a;
    --brand-soft: #fff9f4;
    --text-muted: #6c5c54;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--brand-dark);
    background: linear-gradient(135deg, #ffffff 0%, var(--brand-pearl) 30%, var(--brand-beige) 100%);
    min-height: 100vh;
}

.digitalwall {
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100vh - 60px);
}

.left-panel,
.right-panel {
    flex: 1 1 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
}

.left-panel {
    background: radial-gradient(circle at top, #ffffff 20%, var(--brand-pearl) 60%, var(--brand-beige) 100%);
    align-items: flex-start;
}

.logo-wrapper {
    text-align: center;
    max-width: 420px;
    width: 100%;
    margin-top: clamp(10px, 5vh, 80px);
}

.brand-logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.brand-eyebrow {
    margin-top: 30px;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: clamp(0.15rem, 0.5vw, 0.3rem);
    text-transform: uppercase;
    color: var(--text-muted);
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(40px, 6vw, 64px);
    margin: 10px 0;
}

.brand-claim {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 6px;
}

.brand-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #1f1b1a, #3a2f2c);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: clamp(13px, 1.8vw, 16px);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(31, 27, 26, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    line-height: 1.4;
}

.brand-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(31, 27, 26, 0.35);
}

.right-panel {
    background: var(--brand-soft);
}

.panel-content {
    width: min(640px, 100%);
    padding: clamp(10px, 2vw, 20px);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: clamp(0.15rem, 0.5vw, 0.3rem);
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.right-panel h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 12px;
}

.intro {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: clamp(18px, 2vw, 24px);
    min-height: 170px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 20px;
}

.card-text h3 {
    font-size: clamp(18px, 2.2vw, 20px);
    margin-bottom: 6px;
}

.card-text p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    line-height: 1.45;
}

.card-link {
    margin-top: auto;
    font-weight: bold;
    text-decoration: none;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(14px, 1.8vw, 16px);
}

.card-link::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.contact-card:hover .card-link::after {
    transform: translateX(4px);
}

.contact-card.call .icon-badge {
    background: var(--brand-dark);
}

.contact-card.whatsapp .icon-badge {
    background: #25D366;
}

.contact-card.email .icon-badge {
    background: #d16b6b;
}

.contact-card.booking .icon-badge {
    background: #9b6d4a;
}

.contact-card.instagram .icon-badge {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.contact-card.facebook .icon-badge {
    background: #3b5998;
}

.contact-card.tiktok .icon-badge {
    background: #010101;
}

.contact-card.location .icon-badge {
    background: #c48c6a;
}

.site-footer {
    background: #0f0f0f;
    color: #dedede;
    padding: 40px 18px 26px;
    margin-top: 36px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 12px;
}

.site-footer p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer a {
    color: #f1d5c5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #f4a261;
}

.footer-links,
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li,
.social-links li + li {
    margin-top: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.social-link i {
    width: 20px;
    text-align: center;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.share-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.share-link:hover {
    color: #f4a261;
    border-color: #f4a261;
    background-color: rgba(255, 255, 255, 0.05);
}

.share-link i {
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    margin-top: 22px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .digitalwall {
        flex-direction: column;
        min-height: auto;
    }

    .left-panel,
    .right-panel {
        padding: clamp(24px, 6vw, 40px) clamp(18px, 5vw, 36px);
    }

    .brand-name {
        font-size: 48px;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

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

    .brand-eyebrow {
        font-size: 14px;
    }
}
