/* General reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    background-color: #c71585; /* Dark pink header */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    background-color: #a0116e;
    border-radius: 5px;
    transform: scale(1.05);
}

/* Headings */
h1, h2, h3, h4 {
    color: #ff0000;
}

/* Links */
a {
    color: #0000ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hashtag-link {
    color: #0000ff;
    text-decoration: none;
}

.hashtag-link:hover {
    background-color: #a0116e;
    color: #ffffff;
    border-radius: 3px;
    padding: 2px 4px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero-video {
    max-width: 100%;
    height: auto;
}

/* Content Section */
.content p, .content li, .section-text p {
    color: #000000;
    margin-bottom: 1rem;
}

/* Profiles Section */
.profiles .profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.rating {
    color: #ffd700;
    margin: 0.5rem 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn.call, .btn.whatsapp {
    background: none;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.btn.call img, .btn.whatsapp img {
    width: 30px;
    height: 30px;
}

.btn.call:hover, .btn.whatsapp:hover {
    transform: scale(1.1);
}

.btn.book {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #c71585;
    color: #ffffff;
    border-radius: 5px;
}

.btn.book:hover {
    background-color: #a0116e;
}

/* Tables */
.hotel-table, .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.hotel-table th, .pricing-table th {
    background-color: #c71585;
    color: #ffffff;
    padding: 0.75rem;
}

.hotel-table td, .pricing-table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    color: #000000;
}

/* Reviews Section */
.reviews .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.review-card p {
    color: #000000;
}

.client {
    font-weight: bold;
    color: #000000;
}

/* Local Areas Section */
.local-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.local-area-item {
    background: #f9f9f9;
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    color: #0000ff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.local-area-item:hover {
    background-color: #c71585;
    color: #ffffff;
    transform: scale(1.05);
    text-decoration: none;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.location-item {
    background: #f9f9f9;
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    color: #0000ff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.location-item:hover {
    background-color: #c71585;
    color: #ffffff;
    transform: scale(1.05);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
}

.footer p, .footer a {
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #333333;
    padding: 1rem;
    border-radius: 8px;
}

.faq-item p, .faq-item a {
    color: #ffffff;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
}

.sticky-btn {
    background: none;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.sticky-btn img {
    width: 30px;
    height: 30px;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .review-grid, .faq-grid, .locations-grid, .local-areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}