* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #b0d0d3;  /* Nude Blue Background Color */
    color: #4a4a4a;
    line-height: 1.6;
}

header {
    width: 100%;
    height: 500px;
    background-color: #b0d0d3;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

section {
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    color: #2a5277;
    margin-bottom: 15px;
}

h2 {
    font-size: 2em;
    color: #2a5277;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #6c757d;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Info Section */
.contact-info {
    background-color: #eaeaea;
    padding: 40px;
    margin-top: 20px;
}

.contact-info h2 {
    font-size: 2em;
    color: #2a5277;
    text-align: center;
}

.branches {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.branch {
    background-color: #fff;
    padding: 20px;
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out; /* Smooth transition for the zoom effect */
}

.branch:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.branch h3 {
    font-size: 1.8em;
    color: #2a5277;
    margin-bottom: 10px;
}

.branch p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}



footer {
    text-align: center;
    padding: 20px;
    background-color: #e8f1fa;
    border-top: 2px solid #2a5277;
    margin-top: 20px;
}

footer p {
    color: #4a4a4a;
    font-size: 1em;
}

/* New Section for Gallery */
.glasses-gallery {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.glasses-gallery .content {
    text-align: center;
}

.glasses-gallery h2 {
    font-size: 2.2em;
    color: #2a5277;
    margin-bottom: 20px;
}

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

.gallery-item {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px; /* Rounded corners for the images */
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.1); /* Slight zoom effect when hovering */
}

/* Sunglasses Info Section */
.sunglasses-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sunglasses-info .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.image-container {
    flex: 0 0 400px; /* Increase image container width to make the image bigger */
    margin-right: 30px; /* Space between image and text */
    margin-left: -30px; /* Move the image slightly to the left */
}

.sunglasses-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
    max-width: 600px;
    text-align: left; /* Align text to the left */
}

.text-container h2 {
    font-size: 1.8em; /* Smaller font size for the heading */
    color: #2a5277;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 1em; /* Smaller font size for the paragraph */
    color: #555;
    line-height: 1.6;
}
