﻿:root {
    --primary-dark: #031738; /* Navy Blue from logo */
    --primary-cyan: #3bb4f6; /* Sky Blue from logo */
    --cyan-hover: #299ce0;
    --text-yellow: #ffcc00; /* Yellow from logo */
    --text-green: #7ad154; /* Lime green from logo */
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
    
    /* Category Colors */
    --cat-orange: #f97316;
    --cat-brown: #78350f;
    --cat-red: #ef4444;
    --cat-blue: #3b82f6;
    --cat-green: #22c55e;
    --cat-purple: #a855f7;
    --cat-teal: #0ea5e9;
    --cat-yellow: #eab308;
    --cat-pink: #ec4899;
    --cat-gray: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    background-color: var(--text-white);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-margin {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* Header */
.header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.heart-icon {
    font-size: 24px;
    cursor: pointer;
}

.login-link {
    font-weight: 600;
    font-size: 14px;
}

/* Hero */
.hero {
    position: relative;
    z-index: 100;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
    background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&q=80&w=1200&h=800'); 
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 23, 56, 0.85) 0%, rgba(3, 23, 56, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--text-white);
    border-radius: 30px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-icon {
    color: var(--text-light);
    font-size: 22px;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 15px;
    color: var(--text-main);
    width: 100%;
}

.search-bar input::placeholder {
    color: var(--text-light);
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--text-white);
    padding: 8px 12px;
    border-radius: 20px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-left: 1px solid var(--border-color);
}

.location-icon {
    font-size: 18px;
    color: var(--text-main);
}
.dropdown-icon {
    font-size: 20px;
    color: var(--text-light);
}

.curve-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.curve-shape svg {
    width: 100%;
    height: 36px;
}

/* Categories */
.categories {
    margin-top: 24px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 8px;
    text-align: center;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default; /* Not clickable */
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon-circle span {
    font-size: 26px;
}

.category-item span:not(.material-symbols-rounded) {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
}

.bg-orange { background-color: var(--cat-orange); }
.bg-brown { background-color: var(--cat-brown); }
.bg-red { background-color: var(--cat-red); }
.bg-blue { background-color: var(--cat-blue); }
.bg-green { background-color: var(--cat-green); }
.bg-purple { background-color: var(--cat-purple); }
.bg-teal { background-color: var(--cat-teal); }
.bg-yellow { background-color: var(--cat-yellow); }
.bg-pink { background-color: var(--cat-pink); }
.bg-gray { background-color: var(--cat-gray); }

/* Section Shared */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.view-all {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.view-all span {
    font-size: 18px;
}

/* Horizontal Scroll Containers */
.cards-scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.cards-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Highlights */
.highlight-card {
    min-width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
    transition: transform 0.2s;
}
.highlight-card:hover {
    transform: translateY(-2px);
}

.card-image {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    border-radius: 12px;
    z-index: 1;
}

.badge {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.badge-dark { background-color: var(--primary-dark); }
.badge-blue { background-color: var(--primary-cyan); }

.fav-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    z-index: 2;
    cursor: pointer;
}

.card-info-overlay {
    position: relative;
    z-index: 2;
    color: white;
}

.card-info-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 4px;
    color: #e2e8f0;
}

.card-subtitle span {
    font-size: 16px;
    color: var(--text-yellow);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.card-rating .star {
    font-size: 16px;
    color: var(--text-yellow);
}

.dot {
    opacity: 0.6;
}

/* Events */
.event-card {
    min-width: 290px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 12px;
    gap: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.event-card:hover {
    transform: translateY(-2px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.day-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}
.day-name.color-red {
    color: var(--cat-red);
}

.day-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.month {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.event-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.event-meta span {
    font-size: 14px;
}

/* News */
.news-card {
    min-width: 320px;
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.news-card:hover {
    transform: translateY(-2px);
}

.news-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.news-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Banner */
.promo-banner {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.banner-icon {
    font-size: 32px;
    color: var(--text-yellow);
}

.promo-banner p {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--cyan-hover);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

/* Inner Pages */
.inner-page h1 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.inner-page p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-main);
}

.inner-page h2 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--primary-dark);
}

.pricing-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.pricing-card.highlight {
    border-color: var(--primary-cyan);
    box-shadow: 0 4px 12px rgba(59, 180, 246, 0.2);
    transform: scale(1.02);
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

@keyframes pulseBlink {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.05); opacity: 0.85; box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.btn-pulse-anuncie {
    background-color: #ef4444 !important;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    animation: pulseBlink 2s infinite ease-in-out;
    text-decoration: none !important;
    margin-left: 10px;
}

.pricing-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: opacity 0.2s;
}
.btn-social:hover { opacity: 0.9; }
.btn-social.whatsapp { background-color: #25D366; }
.btn-social.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

/* Client Pages */
.client-hero {
    height: 250px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}
.client-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.client-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.client-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 40px 0 100px 0; /* extra padding for bottom nav */
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer-social a {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 14px;
}

.footer-content p {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 16px;
}

/* Bottom Nav */
.bottom-spacer { height: 90px; }




/* New Bottom Nav Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 15px 15px 15px;
    border-top: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
}
.bottom-nav::-webkit-scrollbar {
    display: none;
}
.nav-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
    width: 76px; /* fixed width prevents overlapping */
}
.nav-category .icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 6px;
}
.nav-category .icon-circle span {
    font-size: 26px;
}
.nav-category > span:last-child {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 500;
}

.nav-item span.material-symbols-outlined, 
.nav-item span.material-symbols-rounded {
    font-size: 24px;
}

.nav-item.active {
    color: var(--primary-cyan); 
}
.nav-item.active span {
    font-variation-settings: 'FILL' 1;
}

@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(10, 1fr); }
    .hero { height: 480px; border-radius: 0 0 24px 24px; }
    .hero-content { max-width: 1200px; }
    .hero h1 { font-size: 48px; }
    .hero p { font-size: 16px; max-width: 400px; }
    .search-bar { max-width: 500px; }
    .cards-scroll-container { flex-wrap: wrap; overflow-x: visible; gap: 20px; }
    .highlight-card { flex: 1; min-width: calc(33.333% - 20px); display: block; }
    .event-card { flex: 1; min-width: calc(50% - 10px); }
    .news-card { flex: 1; min-width: calc(33.333% - 20px); }
    /* removed bottom nav hiding */
    .site-footer { padding-bottom: 100px; }
}

/* Client Page Additions */
.client-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
}
.btn-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}
.btn-action:hover { opacity: 0.9; }
.btn-action.whatsapp { background-color: #25D366; }
.btn-action.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.btn-action.website { background-color: var(--primary-cyan); }

.gallery-title {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.client-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.client-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .client-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    .client-gallery img {
        height: 180px;
    }
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.search-result-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background-color: #f8fafc;
}
.search-result-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.search-result-category {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.search-result-category span.material-symbols-rounded {
    font-size: 14px;
}
.search-empty-state {
    padding: 16px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

