/* DelhiResort.in - Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

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

.contact-info a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

/* Navigation */
nav {
    background: #1e3a8a;
    padding: 0.5rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: 70vh;
}

h1 {
    color: #2c5aa0;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid #4a90e2;
    padding-bottom: 10px;
}

h2 {
    color: #1e3a8a;
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #4a90e2;
    padding-left: 15px;
}

h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.7;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    background: #f0f7ff;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    border: 1px solid #e3f2fd;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin: 10px 5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* Internal Links */
.internal-links {
    background: #e8f4fd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.internal-links h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.internal-links ul {
    list-style: none;
}

.internal-links li {
    margin: 0.5rem 0;
}

.internal-links a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.internal-links a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
    text-align: center;
}

footer a {
    color: #4a90e2;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 5px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .content-section, .faq-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .content-section, .faq-section {
        padding: 0.8rem;
    }
}

/* Sitemap Styles */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sitemap-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sitemap-category h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 0.5rem;
}

.sitemap-category ul {
    list-style: none;
}

.sitemap-category li {
    margin: 0.3rem 0;
}

.sitemap-category a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.sitemap-category a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}