/* Define Fonts */

    @font-face {
        font-family: "Didact Gothic";
        src: url("../fonts/DidactGothic-Regular.woff2") format("woff2");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: "Playfair";
        src: url("../fonts/Playfair_144pt-Regular.woff2") format("woff2");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: "Playfair";
        src: url("../fonts/Playfair_144pt-Bold.woff2") format("woff2");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    /* Non-critical UI font */
    @font-face {
        font-family: "Libertinus Sans";
        src: url("../fonts/LibertinusSans-Regular.woff2") format("woff2");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: "Libertinus Sans";
        src: url("../fonts/LibertinusSans-Bold.woff2") format("woff2");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }


/* root variables */
:root {
    /* Colors */
    --primary-orange: #FF6B00; 
    --accent-orange: #D35400;

    --primary-black: #212121;
    --primary-green: #06923E;
    --primary-white: #FFFFFF;
    --warm-sand: #EFD9B4;

    /* Fonts */
    --font-body: "Didact Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: "Libertinus Sans", system-ui, sans-serif;
    --font-heading: "Playfair", Georgia, serif;
}

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

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

body {
    overflow-x: hidden;
    background-color: var(--primary-white);
    font-family: var(--font-body);
}

/* Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-white); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
    /* prevent any potential overflow */
    overflow: hidden;
    max-width: 100vw;
}

.loader {
    animation: rotate 3s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader:before {
    animation: ball1 1s infinite;
    background-color: var(--primary-black);
    box-shadow: 30px 0 0 var(--primary-orange);
    margin-bottom: 10px;
}

.loader:after {
    animation: ball2 1s infinite;
    background-color: var(--primary-orange);
    box-shadow: 30px 0 0 var(--primary-black);
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(0.8) }
    50% { transform: rotate(360deg) scale(1.2) }
    100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 var(--primary-orange);
    }
    50% {
        box-shadow: 0 0 0 var(--primary-orange);
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--primary-orange);
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 var(--primary-black);
    }
    50% {
        box-shadow: 0 0 0 var(--warm-sand);
        margin-top: -20px;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--primary-orange);
        margin-top: 0;
    }
}

/* Hide content until loader finishes */
.content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Navbar ======================================================================================================================== */
.custom-navbar {
    background: var(--primary-white);
    backdrop-filter: 1.5;
    padding: 11px 0;
}

.brand-icon {
    height: 40px;
    width: 40px;
    background-color: var(--primary-orange);
    border-radius: 7px;
    color: var(--primary-white);
}

.brand-icon i {
    transform: rotate(20px);
}

.navbar-brand p {
    margin: 0;
    color: var(--primary-black);
    font-weight: 800;
}

.nav-link {
    color: var(--primary-black);
    opacity: .8;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-link:not(.activated) {
    padding: 6px 15px;
}

.nav-link:hover:not(.activated) {
    color: var(--primary-orange);
    opacity: 1;
}

.nav-link.activated {
    opacity: 1;
    background-color: var(--accent-orange);
    color: var(--primary-white);
    padding: 8px 25px !important;
    border-radius: 50px;
    font-weight: 500;
    transition: all .4s ease;
}

.nav-link.activated:hover, 
.nav-link.activated:focus {
    background-color: var(--primary-orange);
} 

/* HAMBURGER MENU */
.custom-toggler {
    border: none;
    background: transparent;
    width: 50px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.custom-toggler span {
    height: 3px;
    width: 100%;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* OFFCANVAS */
.mobile-menu {
    width: 280px;
    background: var(--warm-sand);
}

.mobile-menu .nav-link {
    font-size: .9rem;
    color: var(--primary-black);
    width: fit-content;
}

.mobile-menu .nav-link:hover {
    color: var(--accent-orange);
}

.mobile-menu .nav-link.nav-link.activated {
    color: var(--primary-white);
}

@media (max-width: 991px) {
    .navbar-brand .logo {
        height: 30px;
    }
}

/* Hero ========================================================================================================================= */
.hero {
    min-height: 85vh;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 18, 18, 0.98) 0%,
        rgba(18, 18, 18, 0.92) 25%,
        rgba(18, 18, 18, 0.80) 45%,
        rgba(18, 18, 18, 0.55) 65%,
        rgba(18, 18, 18, 0.30) 80%,
        rgba(18, 18, 18, 0.10) 90%,
        rgba(18, 18, 18, 0.00) 100%
    );
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text span:not(h1 > span) {
    background-color: #d3540041;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 5px 15px;
    border-radius: 50px;
}

.hero-text h1 {
    color: var(--primary-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(35px, 60px, 70px);
    line-height: .9;
}

.hero-text h1 span {
    color: var(--accent-orange);
    font-style: italic;
}

.hero-text p {
    color: var(--primary-white);
}

/* MD & SM — center everything */
@media (max-width: 991.98px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-links {
        justify-content: center;
    }
}

/* LG & UP — left aligned */
@media (min-width: 992px) {
    .hero {
        justify-content: flex-start;
    }

    .hero-text {
        margin-left: 3rem;
        text-align: left;
    }
}

/* Main Secondary btns */
.main-btn {
    background-color: var(--accent-orange);
    color: var(--warm-sand);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all .4s ease;
}

.main-btn:hover,
.main-btn:focus {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.secondary-btn {
    padding: 8px 18px;
    color: var(--primary-orange);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    transition: all .4s ease-in-out;
}

.secondary-btn:hover,
.secondary-btn:focus {
    background-color: var(--accent-orange);
    color: var(--warm-sand);
    transform: translateY(-2px);
}

/* About ========================================================================================================================== */
.about {
    overflow-x: hidden;
}

.about-content .images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
    align-items: end;
    height: 400px;
}

.images-grid img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.images-grid .img-1 {
    height: 80%;
    align-self: flex-end;
}

.images-grid .img-2 {
    height: 100%;
}

.about-images .text-overlay {
    top: 75%;
    left: 45%;
    text-align: center;
}

.about-images .text-overlay {
    background-color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 16px;
}

.about-images .text-overlay h3 {
    font-weight: 900;
    font-size: 40px;
    color: var(--primary-orange);
}

.about-images .text-overlay p {
    padding: 0;
}

@media (max-width: 768px) {
    .about-images .images-grid {
        height: 310px;
    }

    .about-text {
        margin-top: 30px;
    }
}

.about-text span {
    font-family: var(--font-heading);
    color: var(--primary-orange);
    font-size: 23px;
    letter-spacing: 3px;
}

.about-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(35px, 60px, 70px);
    line-height: .9;
}

.about-text h1 .brand {
    color: var(--accent-orange);
}

.about-text p {
    opacity: .6;
    font-weight: 600;
    line-height: 1.4;
}

.about-text .about-specials h3 {
    font-weight: 900;
    font-family: var(--font-ui);
}

/* Main title ===================================================================================================================== */
.main-title span {
    font-family: var(--font-heading);
    color: var(--primary-orange);
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 23px;
}

.main-title h1 {
    font-size: clamp(30px, 45px, 60px);
    font-family: var(--font-heading);
    font-weight: 800;
}

.main-title p {
    opacity: .6;
    font-weight: 600;
}

/* Services ======================================================================================================================== */
.service {
    border: 1px solid transparent;
    border-radius:16px;
    padding: 20px;
    transition: border-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.service .service-icon {
    height: 50px;
    width: 50px;
    border-radius: 6px;
    background-color: #d354002c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.service .service-icon i {
    font-size: 25px;
    color: var(--accent-orange);
    transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.service h3 {
    text-transform: capitalize;
    font-weight: bold;
    margin: 16px 0;
}

.service p {
    opacity: 0.7;
    font-weight: bold;
    transition: opacity 0.4s ease-in-out;
}

.service:hover,
.service:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service:hover .service-icon,
.service:focus .service-icon {
    background-color: var(--accent-orange);
}

.service:hover .service-icon i,
.service:focus .service-icon i {
    color: var(--warm-sand);
}

/* Why-us ======================================================================================================================== */
.why-us {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    overflow-x: hidden;
}

.why-us-text {
    max-width: 600px;
}

.why-us-text span:not(h1 > span) {
    letter-spacing: 3px;
    font-size: 23px;
    font-family: var(--font-heading);
}

.why-us-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 50px, 60px);
    line-height: .9;
    font-weight: 800;
}

.why-us-text h1 span {
    text-decoration: underline;
}

.why-us .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-us .feature-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff33;
    border-radius: 12px;
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us .feature-text {
    display: flex;
    flex-direction: column;
}

.why-us .feature-title {
    margin: 0;
    font-weight: bolder;
    line-height: 1.3;
}

.why-us .feature-description {
    margin-top: 0.3rem;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-us .feature-title {
        font-size: 25px;
    }

    .why-us .feature-description {
        font-size: 14px;
    }

    .why-us-image {
        margin-top: 20px;
    }
}

.why-us-image .image {
    height: 650px;
    overflow: hidden;
    border-radius: 1rem;
}

.why-us-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-testimonial {
    background-color: var(--primary-white);
    border: 1px solid transparent;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 15px;

    display: flex;
    align-items: center;
    gap: 15px;
    transition: all .4s ease-in-out;
}

.customer-testimonial:hover {
    transform: translateY(-2px);
    border-color: var(--accent-orange);
}

.customer-testimonial .profile img {
    height: 60px;
    width: 60px;
    border-radius: 50px;
}

.customer-testimonial h3 {
    font-size: 16px;
    color: var(--primary-black);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.customer-testimonial p {
    margin: 4px 0 0;
    color: var(--accent-orange);
    opacity: .5;
    font-size: 14px;
    opacity: 0.7;
}

/* Gallery ========================================================================================================================= */
.gallery {
    overflow-x: hidden;
}

.gallery-content .gallery-filter .filter-btn {
    padding: 7px 20px;
    border-radius: 50px;
    background-color: #e9e3e04b;  
    transition: all .5s ease-in-out;  
}

.gallery-content .gallery-filter .filter-btn:hover,
.gallery-content .gallery-filter .filter-btn:focus,
.gallery-content .gallery-filter .filter-btn.active {
    background-color: var(--accent-orange);
    color: var(--warm-sand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 220px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(212, 102, 11, 0.75),
        rgba(192, 134, 46, 0.432)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #ddd;
    font-size: 14px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* book-table ==================================================================================================================== */
.book-table {
    overflow-x: hidden;
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.book-table-text .main-title p {
    font-weight: 400;
}

.meal-times {
    display: flex;
    flex-wrap: wrap;
}

.book-table-text .meal {
    flex: 1 1 250px;
    border: 1px solid var(--primary-green);
    background-color: #171817fb;
    transition: all .4s ease-in-out;
}

.book-table-text .meal:hover,
.book-table-text .meal:focus {
    background-color: #0d1a12;
    transform: translateY(-2px);
}

.book-table-text .meal h5 {
    color: var(--primary-green);
    font-weight: bold;
}

.meal p,
.meal b {
    font-family: var(--font-ui);
}

.book-table-text .call-us {
    background-color: var(--primary-green);
    color: var(--warm-sand);
}

.book-table-text .call-us .icon {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #aa9b9041;
}

.book-table-text .call-us h4,
.book-table-text .call-us p {
    padding: 0;
    margin: 0;
}

.booking-form {
    background: var(--primary-white) !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(33, 33, 33, 0.15);
    border-radius: 20px !important;
    overflow: hidden;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    width: 100%;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--primary-white);
    color: var(--primary-black);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-select {
    padding-right: 48px;
    cursor: pointer;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(6, 146, 62, 0.1);
    transform: translateY(-2px);
}

.form-input:hover,
.form-select:hover {
    border-color: var(--primary-green);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-orange);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input:focus + .input-icon {
    color: var(--primary-green);
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-orange);
    font-size: 0.9rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    color: var(--primary-green);
}

.form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-green);
}

.date-input {
    color: var(--primary-black);
}

.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    left: 0;
    top: 0;
}

.date-input::placeholder {
    color: #9e9e9e;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #057730 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 146, 62, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff4757;
}

.form-input:invalid:not(:focus):not(:placeholder-shown) + .input-icon {
    color: #ff4757;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px !important;
    }
    
    .form-input,
    .form-select {
        padding: 12px 16px 12px 44px;
    }
    
    .input-icon {
        left: 16px;
    }
    
    .select-arrow {
        right: 16px;
    }
}

.booking-form .form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.booking-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.booking-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.booking-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.booking-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.booking-form .form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Get in touch ================================================================================================================== */
.info-card {
    padding: 35px 25px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ebf0eb, #ffffff);
    height: 280px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(211, 84, 0, 0.1);
    box-shadow: 0 10px 30px rgba(33, 33, 33, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 33, 33, 0.1);
    border-color: rgba(211, 84, 0, 0.2);
}

.info-card.active {
    background: linear-gradient(145deg, #D35400, #FF6B00);
    color: var(--primary-white);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.info-card h3 {
    font-weight: 700;
    font-family: var(--font-ui);
    font-size: 1.4rem;
    margin-bottom: 15px;
    
}

.info-card p {
    font-weight: 500;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card.active p {
    opacity: 0.9;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary-green);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 2px solid transparent;
}

.card-link:hover {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 146, 62, 0.2);
}

.info-card.active .card-link {
    background: var(--primary-white);
    color: var(--primary-orange);
}

.info-card.active .card-link:hover {
    background: transparent;
    border-color: var(--primary-white);
    color: var(--primary-white);
}

/* Contact & WhatsApp Links */
.contact-numbers .phone-link,
.whatsapp-numbers .whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-numbers .phone-link:hover {
    background: rgba(211, 84, 0, 0.1);
    color: var(--accent-orange);
    transform: translateX(5px);
}

.whatsapp-numbers .whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    transform: translateX(5px);
}

.info-card.active .phone-link,
.info-card.active .whatsapp-link {
    color: var(--primary-white);
    opacity: 0.9;
}

.info-card.active .phone-link:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.info-card.active .whatsapp-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #25D366;
    opacity: 1;
}

/* WhatsApp Button Special Styling */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card {
        height: auto;
        min-height: 250px;
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .info-card .icon {
        height: 60px;
        width: 60px;
    }
    
    .icon-pulse {
        width: 70px;
        height: 70px;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
}

/* Card Entrance Animation */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: cardEntrance 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

/* Map Container Styles */
.map-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.map-grid-wrapper {
    display: grid;
    place-items: center;
    width: 100%;
}

.map-embed {
    width: 75%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(33, 33, 33, 0.15);
    position: relative;
    z-index: 1;
    animation: mapEntrance 0.8s ease-out forwards;
}

.map-frame {
    display: block;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-frame:hover {
    transform: scale(1.01);
}

@keyframes mapEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Footer ======================================================================================================================= */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon i {
    color: var(--primary-white);
}

.brand-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-white);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-title {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--warm-sand);
}

.quick-links .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.quick-links .footer-link:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.quick-links .footer-link i {
    color: var(--primary-orange);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.quick-links .footer-link:hover i {
    transform: translateX(3px);
}

.hours-item .days {
    color: var(--primary-white);
    font-size: 0.95rem;
}

.hours-item .hours {
    font-weight: 600;
    font-size: 0.95rem;
}

.text-primary-green {
    color: var(--primary-green) !important;
}

.reservation-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.reservation-note i {
    font-size: 1.2rem;
}
