/*
Theme Name: Modi Spaces Ganges
Theme URI: https://example.com/modispacesganges
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme for Modi Spaces Ganges
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modispacesganges
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

body.menu-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* .site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
} */

.site-header {
    width: 100%;
    background: #fff;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
    padding: 20px 0;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 16px rgba(0,0,0,0.15);
}

.site-header.scrolled {
    padding: 20px 0;
}


.site {
    transform: none !important;
}











.site-header.scrolled .site-branding img {
    max-height: 80px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-branding {
    flex-shrink: 0;
}

/* Header Logos Wrapper - Display logos side by side */
.header-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logos-wrapper .custom-logo-link {
    display: block;
}

.header-logos-wrapper .logo-1 .custom-logo,
.header-logos-wrapper .logo-2 .custom-logo-2 {
    max-height: 80px;
    width: auto;
    display: block;
    transition: max-height 0.3s ease;
}

/* Single logo fallback */
.site-branding .custom-logo-link {
    display: block;
}

.site-branding img {
    max-height: 80px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 2.5rem;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-close,
.mobile-menu-cta {
    display: none;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a {
    color: #ff6b35;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b35;
    transition: width 0.3s;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.btn-get-quote {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-get-quote:hover {
    background-color: #e85a24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Main Content */
.site-content {
    background-color: #fff;
    margin: 30px auto;
    padding: 30px;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Posts */
.post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.post:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
}

.entry-title a:hover {
    color: #3498db;
}

.entry-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Sidebar */
.sidebar {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 30px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: #3498db;
}

/* Footer */
.site-footer {
    background-image: url('http://localhost/modispacesganges/wp-content/uploads/2026/01/footer-top-style3-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    text-align: center;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-center h3 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-weight: 300;
}

.footer-brand-blue {
    color: #5B9BD5;
    font-weight: 400;
}

.footer-brand-orange {
    color: #FF6B35;
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.footer-tagline {
    color: #999;
    font-size: 0.85rem;
    margin: 5px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo-center img {
    max-width: 250px;
    height: auto;
    margin: 0 auto 15px;
}

.footer-menu-center {
    margin-bottom: 30px;
}

.footer-menu-center ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 40px;
}

.footer-menu-center li {
    margin: 0;
}

.footer-menu-center a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    text-transform: capitalize;
}

.footer-menu-center a:hover {
    color: #FF6B35;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FF6B35;
}

.footer-bottom strong {
    color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-cta {
        order: 2;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop menu items */
    .header-cta {
        display: none;
    }
    
    /* Mobile Navigation - Slide from right */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: #fff;
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    /* Close button */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 10;
    }
    
    .mobile-menu-close svg {
        display: none;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 60px 30px 20px;
        flex: 1;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 18px 0;
        width: 100%;
        font-size: 1.1rem;
        color: #333;
        font-weight: 500;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    /* Mobile menu CTA at bottom */
    .mobile-menu-cta {
        display: block;
        padding: 20px 30px 30px;
        background-color: #fff;
        border-top: 1px solid #f0f0f0;
    }
    
    .btn-get-quote-mobile {
        display: block;
        width: 100%;
        padding: 15px 30px;
        background-color: #ff6b35;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    
    .btn-get-quote-mobile:hover {
        background-color: #e85a24;
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem !important;
    }
    .floorplan-title {
        font-size: 2rem !important;
    }

    .amenities-title {
        font-size: 2rem !important;
    }

    .contact-title {
        font-size: 2rem !important;
    }

    .site-header {
        padding: 10px 0;
    }
    
    /* Responsive logos for mobile */
    .site-branding img,
    .header-logos-wrapper .logo-1 .custom-logo,
    .header-logos-wrapper .logo-2 .custom-logo-2 {
        max-height: 55px;
    }

    .site-header.scrolled .site-branding img,
    .site-header.scrolled .header-logos-wrapper .logo-1 .custom-logo,
    .site-header.scrolled .header-logos-wrapper .logo-2 .custom-logo-2 {
        max-height: 55px;
    }
    
    /* Reduce gap between logos on mobile */
    .header-logos-wrapper {
        gap: 12px;
    }
    
    .main-navigation {
        width: 85%;
        max-width: 320px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
