 body, html {
    background-color: #000;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter' , sans-serif; /* Set a default font */
} 


*{
    box-sizing: border-box;
  
}




    /* GLOBAL STYLES */

    h1, h2, h3, h4, h5, h6{
        color:#ffffff;
        font-family: 'Inter' , sans-serif;
      

    }


    p{
        color:#f6f6f6;
        font-size: 10px;
        font-family: 'Inter' , sans-serif;
    }







     /* All Header Background */
     /* index */
     .index-background {
        background-image: url('./images/index.jpg');
       
        background-size: cover;
        height: 40vh;
        background-position: center;
        background-repeat: no-repeat;
  
        padding: 20px;
        display: flex;
        flex-direction: column;
     
     
     }




     /* about */
     .about-background{
        background-image: url('./images/candles.jpg');
       
        background-size: cover;
        height: 45vh;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 20px;
        display: flex;
        flex-direction: column;
  
     }




     /* contact */

     .contact-background{
        background-image: url('./images/contact.jpg');
       
        background-size: cover;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 20px;
        display: flex;
        flex-direction: column;
  
     }


     .faq-background{
        background-image: url('./images/faq.jpg');
       
        background-size: cover;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 20px;
        display: flex;
        flex-direction: column;
  
     }



     .testimonial-background{
        background-image: url('./images/testimonial.jpg');
       
        background-size: cover;
        height: 40vh;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 20px;
        display: flex;
        flex-direction: column;
  
     }


     
     
      

     
        /* Navigation styles */
        .navbar {
         
            padding: 1rem;
        }
        
        .nav-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
           margin: 0 auto;
        }
        
        .nav-links li a {
            color: #ddd;
            text-decoration: none;
            padding: 0.5rem 1rem;
           
            transition: all 0.3s ease;
        }
        
        .nav-links li a:hover {
            color: white;
            
        }
        
        .nav-links li a.active {
            color: white;
            background-color: #cf1212;
            font-weight: bold;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .nav-links li a {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
        }
        
        /* For very small screens */
        @media (max-width: 480px) {

          

            .nav-container{
                width:100%;
              
            }
            .nav-links {
               gap:5px;
           
            }
            
            .nav-links li a {
                padding: 0.3rem 0.4rem;
                font-size: 0.5rem;
            }
        }






.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 1% 2% 1% 2%;
   
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  
}

/* Media Queries */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Hide desktop menu and show hamburger on tablets */
    .desktop-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }

    .content {
        padding: 20px 10px;
    }

    .mobile-menu {
        width: 250px;
        right: -250px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
} 




/* 8 CARDS */

.contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cards {
    width: calc(25% - 20px);
    margin: 10px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  
}

.cards img {
    width: 100%;
    display: block;
    height: 150px;
    object-fit: cover;
}

.card-title {
    background-color: #000;
    border-left: 1px;
    border-bottom: 1px;
    border-right: 1px;
    border-style:solid;
    border-color: #f0f0f0;

 
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f6f6f6;
}



/* Media query for tablets */
@media (max-width: 768px) {
    .cards {
        width: calc(50% - 20px);
    }
}

/* Media query for mobile */
@media (max-width: 480px) {
    .cards{
        width: 100%;
      
     
    }

   
}








 










/* footer */


/* CTA Section Styles */
.cta-section {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    margin: 0 auto;
    
  
    max-width: 100%;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-top: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-btn {
    background-color: white;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    bottom: 0;
    width: 100%;
}

  .copyright {
    font-size: 0.9rem;
    margin: 0 auto;
}



/* .notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
} */

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
   
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 1rem;
        margin-top: 4rem;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
        padding-top: 5px;
    }
    
    .contact-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.7rem;
        margin: 0 auto;
    }

   
}












/* ABOUT PAGE */
.background-container {
    width: 100%;
    height: 500px;
    background-image: url("https://source.unsplash.com/random/1600x900/?nature");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.5rem;
  }  




  /* about second image div */
  
  .second-background {
    background-image: url('./images/spooky-lady.jpg');
       
    background-size: cover;
    height: 40vh;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;

  
}



@media (max-width: 480px) {
    .second-background {
        height: 15vh;
    }
    
   
}




/* About long text */


.long-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 24px;
    font-size: 15px;
    color: white;
}

.emphasis {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {


    .long-container {
        max-width:80%;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: 20px;
        align-self: center;
    }
  
    
    p {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

/* ABOUT HEAD CONTENT */
.faq-content h1{
    text-align: justify;


}



/* CONTACT PAGE */



.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;

}

/* Contact Cards Styles */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 300px;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    margin: 0 auto;
    align-self: center;
}

.card h3 {
   
    color: #ccc;
}

.card p {
    color: #999;
    font-size: 14px;
    word-break: break-word;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 40px;
    max-width: 50%;
  
    margin: 0 auto;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 70%;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
}

.required {
    color: #ff4d4d;
}

input, textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    width: 100%;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #999;
    color: #000;
    border: none;
   
    padding: 12px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #ccc;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .contact-cards {
        justify-content: center;
    }
    
    .card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 auto;
        align-self: center;
    }


    .contact-form{
      margin: 0 auto;
      align-self: center;
      max-width: 100%;
    }
    
    .card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {


    .submit-btn {
        font-size: 15px;
        margin-top:1rem;
    }


   
    .contact-form-container{
        max-width: 90%;
        margin-top: 5rem;
      
        margin: 0 aut0;
        align-self: center;
    }


    .contact-form{
        gap:1px;
        max-width:100%;
    }

    .form-group{
        max-width: 80%;
        min-height: 5vh;
        margin: 0 auto;
        align-self: center;
        

    }

    #fullName{
        min-height: 5px;
    }
    

    .card{
        max-width: 70%;
        min-height: 5vh;
        margin: 0 auto;
        align-self: center;

    }


    .card h3 {
       
        color: #ccc;
    }
    
    .contact-section {
        padding: 20px 10px;
    }
    
    .submit-btn {
        width: 100%;
        align-self: center;
    }
}





/* TESTIMONIAL PAGE */










/* testimonial session */
.testimonial-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
 
}

.testimonial {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
  margin: 0 auto;
    align-self: center;
   
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial-image {
    flex: 0 0 350px;
  
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.testimonial-text p{
    font-size: 16px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.testimonial-name {
    font-weight: bold;
    font-size: 18px;
}

.testimonial-location {
    font-style: italic;
    color: #ccc;
}

/* Media Queries */
@media (max-width: 768px) {
    .testimonial {
        flex-direction: column;
    }
    
    .testimonial-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {


   .testimonial-content{
    margin: 0 auto;
   }
 
    .testimonial-image {
        max-width: 100%;
        margin: 0 auto;
        align-self: center;
        padding-left: 1rem;
      
       
      

    }

    .testimonial{
        position: absolute;
        left: 2rem;
    }

  
  
    .testimonial-text {
        font-size: 12px;
        margin: 0 auto;
        align-self: center;
        padding:1% 0 0 1%
    }





    .testimonial-content p {
        font-size: 14px;
        margin: 0 auto;
        align-self: center;
        padding:1% 4% 0 2%
    }
}








/* FAQ STYLING */


.faq-heading h2{
   
    text-align: center;
    margin: 0 auto;
    padding: 2rem 0 0 0;
}
.search-container {
    position: relative;
    margin-bottom: 30px;
    max-width: 50%;
    margin: 0 auto;
    margin-top: 50px;
   
}

.search-container input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    font-size: 16px;
    margin: 0 auto;
}

.search-container button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: #ccc;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.faq-question .toggle-btn {
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    margin-top: 15px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle-btn {
    transform: rotate(45deg);
}

.hidden {
    display: none !important;
}

/* Media Queries */
@media (max-width: 768px) {


    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {


    .faq-heading h2{
        padding-bottom: 0.2rem;
    }

    .search-container {
        position: relative;
        margin-bottom: 30px;
        max-width: 80%;
        margin: 0 auto;
        margin-top: 50px;
        align-self: center;
       
    }


    .faq-container {
        display: flex;
        flex-direction: column;
        width: 80%;
        color: #ccc;
        margin: 0 auto;
    }
    h1 {
        font-size: 15px;
        margin: 15px 0;
    }

    .search-container input {
        padding: 10px;
        font-size: 20px;
    }

    .faq-item {
        padding: 15px 0;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
       font-size: 12px;
    }
}