/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-bottom: 70px;
    /* Space for the sticky bottom bar */
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar styles */
.navbar {
    background-color: #fff;
    color: #333;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #E52B6F;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn {
    background: #f1f3f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #e9ecef;
    color: #E52B6F;
}

.signin-btn {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.signin-btn:hover {
    color: #E52B6F;
}

.book-btn {
    border: 1px solid #E52B6F;
    color: #E52B6F;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.book-btn:hover {
    background-color: #E52B6F;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('images/upcoming(11.html).webp');
    background-size: cover;
    background-position: 75% 25%;
    display: flex;
    align-items: flex-end;
    /* Aligns content card to the bottom */
    padding: 3rem 0;
}

/* Fallback/Overlay when no image is present */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-overlay-card {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
    width: 90%;
    max-width: 960px;
    margin: 0 auto 0 5%;
    padding: 2.5rem;
    color: #fff;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay-card h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-overlay-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: #e0e0e0;
    max-width: 850px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
}

.btn-call {
    display: inline-block;
    background-color: #E52B6F;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.1s ease;
    text-align: center;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #075E54;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.1s ease;
    text-align: center;
}

.btn-call:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
}

.btn-call:active,
.btn-whatsapp:active {
    transform: scale(0.98);
}

/* About / Content Section */
.content {
    background-color: #27061d;
    /* Matches the dark berry theme */
    padding: 4rem 0 5rem 0;
    color: #e6d6e3;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.content h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    color: #e6d6e3;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.content strong {
    color: #fff;
    font-weight: 700;
}

.content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content li {
    color: #e6d6e3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.content li strong {
    color: #fff;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.sticky-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #5b4bf3 0%, #a23bf0 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-top-left-radius: 12px;
    transition: opacity 0.2s ease;
}

.sticky-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-top-right-radius: 12px;
    transition: opacity 0.2s ease;
}

.sticky-call:hover,
.sticky-whatsapp:hover {
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-overlay-card {
        margin: 0 auto;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        /* Hide standard nav links on mobile */
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        height: auto;
        min-height: 480px;
        align-items: center;
        padding: 2rem 0;
    }

    .hero-overlay-card {
        padding: 1.5rem;
    }

    .hero-overlay-card h1 {
        font-size: 1.8rem;
    }

    .hero-overlay-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
    }

    .btn-call,
    .btn-whatsapp {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-actions .signin-btn {
        display: none;
        /* Hide signin text link on very small screens */
    }
}

/* Profiles Section Styles */
.profiles-section {
    background-color: #E52B6F;
    padding: 3rem 0 4rem 0;
    color: #fff;
}

.profiles-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.profile-card {
    display: flex;
    background-color: #27061d;
    /* Very dark berry/burgundy background */
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-img-container {
    width: 38%;
    min-width: 150px;
    background-color: #1a0212;
    position: relative;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-details {
    width: 62%;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.profile-desc {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #f3e5f0;
    margin-bottom: 0.8rem;
}

.profile-desc strong {
    font-weight: 700;
    color: #fff;
}

.profile-card-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.btn-card-call {
    flex: 1;
    background-color: #E52B6F;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-radius: 4px;
    font-size: 0.88rem;
    text-align: center;
    transition: opacity 0.2s ease;
}

.btn-card-whatsapp {
    flex: 1;
    background-color: #007A48;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-radius: 4px;
    font-size: 0.88rem;
    text-align: center;
    transition: opacity 0.2s ease;
}

.btn-card-call:hover,
.btn-card-whatsapp:hover {
    opacity: 0.9;
}

/* Responsive adjustments for Profiles Section */
@media (max-width: 992px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .profiles-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .profile-card {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .profile-card {
        flex-direction: column;
    }

    .profile-img-container {
        width: 100%;
        height: 280px;
    }

    .profile-details {
        width: 100%;
        padding: 1.2rem;
    }

    .profile-desc {
        margin-bottom: 1rem;
    }
}

/* Scroll Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {

    /* Reduce translation amount on small screens to avoid horizontal overflow issues */
    .reveal-left {
        transform: translateX(-40px);
    }

    .reveal-right {
        transform: translateX(40px);
    }
}

/* Categories Section Styles */
.categories-section {
    background-color: #f8f9fa;
    /* Soft light grey background */
    padding: 4rem 0 5rem 0;
    border-top: 1px solid #e9ecef;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.category-img-container {
    width: 100%;
    height: 320px;
    background-color: #e9ecef;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.02);
}

.category-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.category-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-img-container {
        height: 360px;
    }
}

/* Inline SEO Content Links */
.content-link {
    color: #E52B6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.content-link:hover {
    color: #ff5e97;
    text-decoration: none;
}