/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #e7e5e4;
    /* bg-stone-200 */
    color: #0f172a;
    /* text-slate-900 */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    /* pt-2 pr-2 pb-2 pl-2 */
}

@media (min-width: 768px) {
    body {
        padding: 1.5rem;
        /* md:p-6 */
    }
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Utilities Helper */
.font-jakarta {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.font-geist {
    font-family: 'Inter', sans-serif !important;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }
}

/* App Container */
.app-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    background-color: #ffffff;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    box-shadow: 0 0 0 8px #ffffff;
    /* ring-8 ring-white */
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .navbar {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.navbar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* px-6 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .navbar-inner {
        padding: 0 2.5rem;
        /* md:px-10 */
    }
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-logo-img {
    height: 11rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    /* text-sm */
    transition: color 0.3s;
}

.nav-link:hover {
    color: #f59e0b;
    /* text-amber-500 */
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-cta {
        display: flex;
    }
}

.btn-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d97706;
    /* bg-amber-600 */
    color: white;
    padding: 0.625rem 1.25rem;
    /* px-5 py-2.5 */
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-instagram:hover {
    background-color: #b45309;
    /* bg-amber-700 */
    transform: scale(1.05);
}

/* Hero */
.hero-section {
    position: relative;
    width: 100%;
    height: 92vh;
    background-color: #1c1917;
    /* bg-stone-900 */
    overflow: hidden;
    flex-shrink: 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    animation: fadeInUp 1s;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1c1917, rgba(28, 25, 23, 0.6), transparent);
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 8rem;
        padding-bottom: 6rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.hero-interactive {
    pointer-events: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.1s;
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.badge-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(41, 37, 36, 0.8);
    border: 1px solid #44403c;
    color: #e7e5e4;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #22c55e;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 7rem;
    }

    .hero-title {
        font-size: 2.25rem !important;
    }

    .hero-content {
        padding-top: 10rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 500;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    max-width: 64rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
    text-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    color: #d6d3d1;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 36rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.3s;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #d97706;
    color: white;
    padding: 0.625rem 0.5rem 0.625rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(180, 83, 9, 0.2);
}

.btn-primary:hover {
    background-color: #b45309;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Facility Gallery */
.facility-section {
    background-color: #1c1917;
    padding: 3rem 1rem;
    border-bottom: 1px solid #292524;
}

@media (min-width: 768px) {
    .facility-section {
        padding: 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .facility-section {
        padding: 5rem 4rem;
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: 200px;
}

@media (min-width: 768px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

@media (min-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.facility-item {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid #292524;
}

.md-col-span-2 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .md-col-span-2 {
        grid-column: span 2;
    }
}

.facility-header {
    background-color: #292524;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .facility-header {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.7s;
}

.facility-item:hover .facility-img {
    transform: scale(1.1);
}

.facility-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: rgba(28, 25, 23, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border: 1px solid #44403c;
}

.facility-feature {
    background-color: #d97706;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid #b45309;
}

/* Menu */
.menu-section {
    background-color: #fafaf9;
    /* stone-50 */
    width: 100%;
    padding: 5rem 1rem;
    border-top: 1px solid #e7e5e4;
    border-bottom: 1px solid #e7e5e4;
}

@media (min-width: 768px) {
    .menu-section {
        padding: 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .menu-section {
        padding: 6rem 4rem;
    }
}

.menu-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .menu-header {
        flex-direction: row;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid #f5f5f4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
}

.menu-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border-color: #fde68a;
}

.menu-img-container {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    background-color: transparent;
    display: block;
}

.menu-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
    transition: transform 0.7s;
}

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.menu-category {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cat-andalan {
    background-color: #fef3c7;
    color: #92400e;
}

/* approximated */
.cat-makanan {
    background-color: #ffedd5;
    color: #9a3412;
}

/* Social Proof */
.social-section {
    background-color: #1c1917;
    padding: 5rem 1rem;
    border-top: 1px solid #292524;
}

@media (min-width: 768px) {
    .social-section {
        padding: 5rem 2rem;
    }
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .social-section {
        padding: 5rem 1rem;
    }
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-card {
    background-color: #292524;
    padding: 1.5rem;
    border-radius: 1.5rem;
    position: relative;
    border: 1px solid rgba(68, 64, 60, 0.5);
    color: white;
}

/* Location */
.location-section {
    background-color: #f5f5f4;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .location-section {
        padding: 5rem 2rem;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-box {
    background-color: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #e7e5e4;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.hours-box {
    background-color: #1c1917;
    color: white;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid #292524;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 1rem;
}

.location-address {
    color: #57534e;
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

@media (max-width: 768px) {

    .location-box,
    .hours-box {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .location-title,
    .hours-title {
        font-size: 1.25rem;
    }

    .location-address {
        font-size: 1rem;
    }

    .hour-row span {
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    background-color: white;
    padding: 2rem;
    border-top: 1px solid #f5f5f4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer {
        flex-direction: row;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #1c1917;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
}

.mobile-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: #d97706;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.reveal {
    opacity: 1 !important;
    /* Force visible as JS is ignored */
    transform: none !important;
}

/* Utility Colors for dynamic classes */
.bg-amber-100 {
    background-color: #fef3c7;
}

.text-amber-800 {
    color: #92400e;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

.text-orange-800 {
    color: #9a3412;
}

.bg-stone-100 {
    background-color: #f5f5f4;
}

.text-stone-600 {
    color: #57534e;
}

.text-amber-500 {
    color: #f59e0b;
}

.text-stone-300 {
    color: #d6d3d1;
}

/* Category & Best Seller Styles */
.category-banner {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: #1c1917;
    border-radius: 3rem;
    overflow: hidden;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
}

.category-images {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push photos to the right */
    gap: 2.5rem;
    padding: 3rem;
    padding-right: 4rem;
    z-index: 1;
}

.category-cover-img {
    height: 80%;
    /* Slightly smaller for side layout */
    width: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    border: 6px solid rgba(255, 255, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Artistic tilt for side layout */
.category-images .category-cover-img:nth-child(1) {
    transform: rotate(-3deg) translateY(10px);
}

.category-images .category-cover-img:nth-child(2) {
    transform: rotate(3deg) translateY(-10px);
}

.category-banner:hover .category-cover-img {
    transform: rotate(0deg) translateY(0) scale(1.08) !important;
    z-index: 10;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6);
}

.category-overlay {
    position: relative;
    z-index: 20;
    width: 60%;
    /* Occupy left side */
    height: 100%;
    background: linear-gradient(to right, rgba(28, 25, 23, 0.95) 0%, rgba(28, 25, 23, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center text vertically */
    padding: 5rem;
    color: white;
    pointer-events: none;
}

.category-title {
    font-size: 3.5rem;
    /* Better scale for side position */
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.category-badge {
    background-color: #d97706;
    color: white;
    padding: 0.75rem 2.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 900;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 15px 30px rgba(180, 83, 9, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.best-seller-label {
    font-size: 1.875rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.best-seller-label::after {
    content: "";
    flex: 1;
    height: 4px;
    background: linear-gradient(to right, #d97706, transparent);
    border-radius: 9999px;
    opacity: 0.15;
}

.best-seller-card {
    border: 2px solid #fde68a !important;
    background-color: #fffbeb !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.best-seller-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 70px -15px rgba(180, 83, 9, 0.15);
}

.best-seller-card .menu-img-container {
    background-color: transparent;
    height: auto !important;
    aspect-ratio: auto !important;
    min-height: auto !important;
}

.best-seller-card .menu-img {
    object-fit: contain;
    height: auto !important;
    max-height: 600px;
    /* Prevent absolutely massive images */
    width: 100%;
}

.best-seller-tag {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    background-color: #d97706;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.cat-premium {
    background-color: #fef3c7;
    color: #92400e;
    font-weight: 800;
}

.cat-regular {
    background-color: #f3f4f6;
    color: #4b5563;
}

@media (max-width: 1024px) {
    .category-title {
        font-size: 3rem;
    }

    .category-banner {
        min-height: 420px;
    }

    .category-overlay {
        width: 50%;
        padding: 4rem;
    }
}

@media (max-width: 768px) {
    .category-banner {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 2rem;
        border-radius: 2rem;
        margin-bottom: 2.5rem;
    }

    .category-images {
        position: relative;
        width: 100%;
        justify-content: center;
        padding: 2.5rem 1.5rem 1rem;
        order: 1;
        gap: 1rem;
        inset: auto;
    }

    .category-cover-img {
        height: 160px;
        aspect-ratio: 3 / 4;
        border-width: 4px;
        border-radius: 1.5rem;
    }

    .category-overlay {
        width: 100%;
        height: auto;
        padding: 2rem 1.5rem;
        background: linear-gradient(to bottom, rgba(28, 25, 23, 0.98) 0%, rgba(28, 25, 23, 0.85) 100%);
        order: 2;
        text-align: center;
        align-items: center;
        pointer-events: auto;
    }

    .category-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .category-badge {
        align-self: center;
    }
}

/* Take Away & Social Links Section */
.take-away-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f4;
}

.take-away-container {
    max-width: 450px;
    margin: 0 auto 2.5rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.take-away-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.take-away-container:hover .take-away-img {
    transform: scale(1.05);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link-card {
    display: flex;
    flex-direction: row;
    /* Horizontal alignment */
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: #fdfcfb;
    border-radius: 1.25rem;
    text-decoration: none;
    color: #1c1917;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f0ee;
}

.social-link-card:hover {
    transform: scale(1.02);
    background: #ffffff;
    border-color: #d97706;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.1);
}

.social-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffedd5;
    color: #d97706;
    border-radius: 0.875rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.social-card-title {
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .take-away-section {
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .social-link-card {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }

    .social-card-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .social-card-title {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .social-link-card {
        justify-content: flex-start;
        /* Better for single column */
    }
}