/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header.navbar {
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Brush Script MT', cursive;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}
/* Since Tag */
.since-tag {
    text-align: center;
    background-color: #909090;
    padding: 10px 20px;
    border-bottom: 2px solid #ddd;
}

.since-tag p {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('bg2.jpg') no-repeat center center/cover; /* Optional background */
    color: black;
    text-align: center;
}

.hero-title {
    opacity: 0; /* Start hidden */
    transform: translateY(-20px); /* Move up */
    animation: fadeInUp 1s forwards 0.5s; /* Animation for title with delay */
    font-size:1.3em;
}

.hero-subtitle {
    margin-top:10px;
    opacity: 0; /* Start hidden */
    transform: translateY(-20px); /* Move up */
    animation: fadeInUp 1s forwards 0.8s; /* Animation for subtitle with delay */
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shop Section */
.shop-section {
    padding: 50px;
    text-align: center;
}

.product-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.product-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.product-item img {
    max-width: 100%;
    height: 300px;
    object-fit:cover;
    border-radius: 5px;
}

/* Social Contact section*/
.social-contact-section {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.company-logo {
    width: 200px; /* Adjust this to your animated logo size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10%; /* You can adjust the border radius for rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}
/* Animation effect */
.contact-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}


.social-contact-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.email {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon i {
    font-size: 24px;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.social-icon.instagram:hover {
    background-color: #e4405f;
    color: #fff;
    border-color: #e4405f;
}


footer.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.highlight {
    color: #ffcc00; /* Highlight color for the brand name */
    font-weight: bold; /* Optional: bold text */
    font-size: 3em;
}
/* Branches Section */
.branches-section {
    padding: 50px;
    text-align: center;
    background-color: #fff; /* Optional background color */
}

.branch-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.branch-item {
    background-color: #f9f9f9; /* Light background for each branch */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px; /* Adjust width as needed */
}

.branch-image {
    max-width: 100%; /* Make image responsive */
    height: 130px; /* Maintain aspect ratio */
    object-fit:cover;
    border-radius: 5px; /* Optional: rounded corners for images */
}

.branch-item h3 {
    margin: 0;
    color: #333; /* Branch name color */
}

.branch-item p {
    margin: 5px 0; /* Margin between lines */
}



/* WhatsApp & Map Section */
.contact-info-section {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.whatsapp-section, .map-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.whatsapp-section {
    text-align: center;
}

.whatsapp-qr {
    width: 200px; /* QR code size */
    height: auto;
    margin: 10px 0;
}

.whatsapp-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.whatsapp-link:hover {
    background-color: #1ebe57;
}
@media (max-width: 768px) {
    .whatsapp-section, .map-section {
        min-width: 100%; /* Make each section full width on smaller screens */
    }
}

.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
