:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFEB99;
    --accent-yellow: #FFC000;
    --dark-text: #333333;
    --light-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFFDF0;
    color: var(--dark-text);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: var(--primary-yellow);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    margin-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-text);
    text-decoration: none;
}

.contact-info {
    margin-left: 1rem;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-text);
}

.social-icons {
    display: flex;
    list-style: none;
}

.social-icons li {
    margin-left: 1rem;
}

.social-icons a {
    color: var(--dark-text);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--light-text);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Blog Content Styles */
.blog-content-section {
    padding: 4rem 0;
    background-color: var(--light-text);
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #777;
}

.blog-meta span {
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-featured-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    height: auto; /* Remove fixed height */
}

.blog-text {
    max-width: 800px;
    margin: 0 auto;
}

.blog-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-text h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

.blog-text blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    color: #555;
}

.blog-link {
    color: #007bff; /* Link color */
    text-decoration: underline; /* Underline the link */
    font-weight: bold; /* Make it bold */
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #0056b3; /* Darker color on hover */
    text-decoration: none; /* Remove underline on hover */
}

.share-section {
    text-align: center;
    margin: 2rem 0;
}

.share-section h3 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.share-button:hover {
    opacity: 0.8;
}

.share-button i {
    margin-right: 0.5rem;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-pinterest {
    background-color: #bd081c;
}

.share-whatsapp {
    background-color: #25d366;
}

.book-now-section {
    text-align: center;
    margin: 2rem 0;
}

.book-now-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--dark-text);
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.book-now-button:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section p strong {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Button */
.whatsapp-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
}

.whatsapp-contact:hover {
    background-color: #128C7E;
}

.whatsapp-contact img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Mobile Responsiveness - Optimized */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo-container {
        width: 100%;
        justify-content: space-between;
    }

    .site-logo {
        height: 50px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .contact-info {
        display: none;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-top: 0;
    }

    .nav-links.active {
        max-height: 300px;
        margin-top: 1rem;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .social-icons.active {
        max-height: 50px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-featured-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
    }
    
    .blog-meta {
        flex-wrap: wrap;
    }
    
    .blog-meta span {
        margin: 0.5rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-button {
        margin-bottom: 0.5rem;
    }
    
    .blog-text {
        padding: 0 1rem;
    }
    
    .blog-text h2 {
        font-size: 1.5rem;
    }
}