/* Base Styles */
:root {
    --primary-color: #E91E63;
    --accent-color: #F8BBD0;
    --background-color: #1C1C1C;
    --secondary-color: #FDFDFD;
    --success-cta: #4DB6AC;
    --subtle-accent: #C7C5D8;
    --button-hover: #C2185B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--button-hover);
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) no-repeat center;
    background-image: url('../img/header-img.webp');
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;  /*Account for fixed header*/
}

/*.hero{
    background-image:url(../img/header-img.webp);
}*/
.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .subheading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 50px;
}

.content-section h2, 
.content-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.flex-container.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content p {
    text-align: left;
    margin-bottom: 0;
}

.image-content {
    flex: 1;
}

.image-content img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-preview, 
.gallery-content {
    padding: 5rem 50px;
}

.gallery-preview h5, 
.gallery-intro h2, 
.service-intro h2, 
.rate-intro h2, 
.contact-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Info Sections */
.info-section, 
.gallery-info, 
.service-info, 
.rate-info {
    padding: 5rem 50px;
    background-color: var(--subtle-accent);
}

.info-item {
    margin-bottom: 3rem;
}

.info-item h3, 
.info-item h4, 
.info-item h5, 
.info-item h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-tier {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.pricing-tier.popular {
    border: 2px solid var(--primary-color);
}

.pricing-tier.popular::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.pricing-tier h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--background-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.pricing-tier ul {
    margin-bottom: 2rem;
}

.pricing-tier li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Contact Section */
.contact-section {
    padding: 5rem 50px;
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info .info-item {
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 1;
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background-color: var(--background-color);
    color: var(--secondary-color);
    padding: 3rem 50px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 0.8rem;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-tier.popular {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .flex-container {
        flex-direction: column;
    }
    
    .flex-container.reverse {
        flex-direction: column;
    }
    
    .text-content, 
    .image-content {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tier.popular {
        grid-column: span 1;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.div-container {
    /* background-image: url("https://w0.peakpx.com/wallpaper/259/119/HD-wallpaper-wonderful-girl-hot-girl-sexy-sweet.jpg") ;
    background-repeat: no-repeat; */
    background-color: #1C1C1C;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1475px;
    margin: 0 auto;
    }

    /* Individual div styling */
    .link-box {
        background-color: #f5f5f5;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .link-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Link styling */
    .link-box a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        display: block;
        height: 100%;
    }

    .link-box a:hover {
        color: #0066cc;
    }

 .nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999999;
}
.lcol {
    background-color: rgb(139, 0, 53);
}
.lcol, .rcol {
    float: left;
    width: 50%;
}
.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    z-index:999999;
}
.lcol a:hover, .rcol a:hover,.lcol a:focus, .rcol a:focus{
    text-decoration:none;
    outline:none;
    color:#fff;
}
.rcol {
    background-color: #24004d;
    display:block;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 40px;
    }
    
    .hero .subheading {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}