/* styles.css for CallGirlzIndia - Guwahati Escorts */

/* Reset Default Styles for Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header and Navigation */
.navbar {
    background-color: #ff3366;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 10px 20px;
    background-color: #eee;
}

.breadcrumb-container a {
    color: #ff3366;
    text-decoration: none;
}

.breadcrumb-container span {
    color: #666;
}

/* General Section Styling */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 32px;
    color: #ff3366;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    color: #ff3366;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff3366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e62e5c;
}

.whatsapp {
    background-color: #25d366;
}

.whatsapp:hover {
    background-color: #20b358;
}

.call {
    background-color: #007bff;
}

.call:hover {
    background-color: #0069d9;
}

/* Contact Buttons Section */
.contact-buttons {
    margin-top: 20px;
}

.contact-buttons .btn {
    margin-right: 10px;
}

/* Models Grid (for models.html) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.model-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
}

.model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.model-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #ff3366;
}

.model-card p {
    font-size: 14px;
    color: #666;
}

/* Model Profile (for model.html) */
#model-profile img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

#model-profile h3 {
    color: #ff3366;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.go-to-top {
    display: block;
    margin-top: 10px;
    color: #ffd700;
    text-decoration: none;
}

.go-to-top:hover {
    color: #fff;
}

/* 404 Page */
.error-404 {
    text-align: center;
}

.error-404 h1 {
    font-size: 48px;
    color: #ff3366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ff3366;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .model-card img {
        height: 150px;
    }

    #model-profile img {
        max-width: 100%;
    }

    .error-404 h1 {
        font-size: 36px;
    }
}


/* Fixed contact buttons */
.fixed-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* Common button styles */
.fixed-contact-buttons .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* WhatsApp button style */
.fixed-contact-buttons .btn.whatsapp {
    background-color: #25D366;
}

/* Call button style */
.fixed-contact-buttons .btn.call {
    background-color: #007BFF;
}

/* Hover effect */
.fixed-contact-buttons .btn:hover {
    transform: scale(1.1);
}
