/* Global Styles */
:root {
    --primary-color: #5C4B51; /* Dark Mauve */
    --secondary-color: rgb(157, 160, 160); /* Soft Pink */
    --accent-color: soft rgb(227, 179, 186); /* Teal */
    --font-family: 'Poppins', sans-serif; /* Unified font */
}

/* General Body Styling */
body {
    background-color: #f5f5f5;
    font-family: var(--font-family);
    color: #333;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h5, h6 {
    text-align: center;
    color: var(--primary-color); /* Primary brand color */
    margin-bottom: 20px;
    font-family: var(--font-family);
}

h1 {
    font-size: 2.5rem; /* Reduced size for mobile adaptability */
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    text-decoration: underline;
}

/* Paragraphs */
p {
    text-align: justify;
    line-height: 1.7;
    padding: 10px 20px; /* Reduced padding for better mobile spacing */
    font-size: 1.00rem;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

/* Links */
a {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    font-family: var(--font-family);
}

a:hover {
    color: var(--accent-color);
}


/* Button Container */
.button-container {
   
    display: flex;
     justify-content: space-around;/* Center the buttons horizontally */
    gap: 25px; /* Add space between buttons */
    /*margin: 20px 0; /* Add some vertical space */
    
   margin-right: 60px;
    margin-left: 60px;
    padding-right: 60px;
    padding-left: 60px;
}

/* Buttons */
button {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 5px 5px 8px rgb(32, 32, 31);
    transition: background-color 0.3s ease; 


}

button:hover {
    background-color: var(--accent-color);
    color: #3b3a3a;
}


.container-five{
    align-items: center;
    display: flex;
    justify-content: center;


}
.cvictoria:hover {
  background-color: rgb(153, 27, 153);
  color: pink;

}

/* Navbar Styling */
.navbar {
    background-color: transparent; /* Keep it transparent */
    padding: 10px 20px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    flex-direction: column; /* Stack the brand and social links vertically */
}

/* Brand Name Styling */
.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px; /* Add space between the brand and social links */
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 15px; /* Space between social icons */
}

/* Social Icon Styling */
.social-links a {
    font-size: 20px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.instagram-icon {
    color: #E1306C;
    font-size: 30px;
}

.facebook-icon{
    color: blue;
    font-size: 30px;
}

.whatsapp-icon {
    color: #09ba4a;
    font-size: 30px;
}

.email-icon {
    color: var(--accent-color);
    font-size: 30px;
}

.mucha, .claudia, .alde{
    padding-bottom: 10px;
}

/* Input Fields */
input[type="email"], .contact-inputs {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: var(--font-family);
}

input:focus, .contact-inputs:focus {
    border-color: var(--accent-color);
}

/* Intro Section */
.intro {
    background-color: rgba(240, 240, 240, 0.9);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 40px auto;
    padding: 40px 60px;
    max-width: 900px;
    font-family: var(--font-family);
}

.intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.heading h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services h2{
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.main{
    /*background-image: url(../images/IMG-Muchap.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;*/
    background-color: rgb(204, 209, 209);
    opacity: 0.6;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 10px;

}



.main h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro p, .mission p, .vision p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
}

/* Mission and Vision Sections */
.community h2, .intro h2, .gladspirit h2, .mission h2, .passion h2, .vision h2 {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin-top: 40px;
}

/* Footer */
footer {
    background-color:var(--accent-color);
    color: rgb(12, 12, 12);
    text-align: center;
    padding: 20px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 900px) {
    h1 {
        font-size: 2rem; /* Adjust heading sizes for smaller screens */
    }

    h2 {
        font-size: 1.75rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .social-links a {
        font-size: 16px;
    }

    .button-container {
        flex-direction:column;
        align-items: center;
        
        gap: 10px;
    }

    .button {
        width: auto; /* Full width buttons for mobile */
        margin-bottom: 10px;
    }

    .intro {
        padding: 20px 30px; /* Reduce padding for mobile */
    }
    
    .img-three {
        max-width: 150px; /* Further reduce image size on small screens */
    }

    p {
        padding: 10px 20px;

    }
}

/* Container for the "More from our customers" Section */
.container-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds space between each column */
    padding: 20px; /* Adds some padding around the container */
}

/* Individual Columns */
.column-three {
    flex: 1 1 150px; /* Flex items with a minimum width of 150px */
    max-width: 200px; /* Limit the width of each column */
    text-align: center; /* Center the images and content */
}

/* Uniform Image Sizing */
.img-three {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
    border-radius: 8px; /* Add a slight rounding to the images */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    transition: transform 0.3s ease; /* Add a smooth hover effect */
}

.img-three:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Button inside the column */
.bmore {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    background-color: var(--secondary-color); /* Use your brand's secondary color */
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.bmore a {
    color: white;
    text-decoration: none;
}

.bmore:hover {
    background-color: var(--accent-color); /* Change button color on hover */
}

/*.navbar-nav {
    text-decoration: line-through;
    display: inline-flex;
    justify-content: center;
    line-height: 42px;
  }
  .nav-link {
    text-decoration: none;
    color: #3510d9;
    transition: all 100ms ease-in-out;
  }*/

  .navbar {
    display: flex;
    justify-content: space-between; /* Centers the content */
    align-items: center;
    background-color:rgb(53, 51, 51);
    padding: 1em;
    box-shadow: 5px 5px 8px rgb(193, 193, 183);
}

.navbar a {
    color: rgb(92, 87, 87);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #292424;
    color: pink;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
    .column-three {
        flex: 1 1 120px; /* Ensure the columns adjust for smaller screens */
        max-width: 150px; /* Constrain the max width for mobile */
    }

    .img-three {
        max-width: 150px; /* Further reduce the image size on small screens */
        height: 150px; /* Adjust height for smaller screens */
    }
}


    /* p {font-size: 0.75rem;
    margin-left: 1px;
    margin-right: 1px;
    padding-left: 1px;
    padding-right: 1px;*/
    button{
    padding: 10px 20px;
   
   
    border-radius: 10px;
   
    font-size: 1rem;
    font-weight: 400;
    } 
 



.container {
    margin-top: 1px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Container for the whole gallery */
.gallery-container {
    width: 400px; /* Define the width of the gallery */
    margin: 0 auto; /* Center the gallery horizontally */
    overflow: hidden; /* Hide the overflow to only show one image at a time */
  }
  
  /* Scroll container inside the gallery */
  .scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  }
  
  .scroll-item {
    flex: none;
    width: 100%; /* Ensure the item takes full container width */
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .customer-logo {
    width: 200px; /* Adjust logo size */
    height: auto;
    object-fit: contain; /* Ensure image scales well inside the container */
  }
  
  /* Navigation buttons */
  
 .navbar-brand{
    
   /*ticha*/
    font-weight: 300;
  
 }
  
    



  .nav-buttons {
    text-align: center;
    margin-top: 20px;
  }
  
  .nav-buttons button {
    color: #0c0202;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    margin: 0 10px;
    border-radius: 50%;
  }
  
  .nav-buttons button:hover {
    background-color: #555;
  }
  
  @media (max-width: 768px) {
    .button-container button {
        
        /* Smaller button styles for screens 768px and below */
        padding: 5px 10px; /* Smaller size */
        font-size: 14px;    /* Smaller font size */
        display: inline-flex;
        margin-bottom: 1px;
    }

    .container{
        margin-top: 1px;
    }

    .navbar-links {
        display: none;
        
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 10px; /* Adjust depending on your navbar height 
       left: */
    }
    .navbar-brand {
        font-size: 0.75rem;
        font-weight: 200;
    }
    .navbar-links.active {
        display: flex;

    }

    .burger {
        display: flex;
    }


}


  