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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #e3cfcf;
    color: #333;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #c85b92;
    padding: 20px;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    margin-bottom: 30px;
}

.site-location {
    font-family: 'Montserrat', sans-serif, cursive;
    font-size: 1em;
    color: #fff; /* Matches brand color */
    margin: 10px 0 20px 0;
    letter-spacing: 0.6px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.tagline {
    font-family: 'Montserrat', sans-serif, cursive;
    font-size: 1em;
    color: #fff; /* Matches brand color */
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 0.6px;
}
.contact-address p {
    font-size: 0.9em; /* Slightly smaller if needed */
    color: #602D6B;    /* Brand color */
    margin-bottom: 10px;
}

h1, .venusiana-title {
    font-family: 'Dancing Script', 'Pacifico', 'Playfair Display', cursive, serif;
    font-size: 5em;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #602D6B; /* Deep purple, sampled from the logo */
    background-color: #F5FBF9; /* Very light mint, matches logo background */
    border-radius: 5em;
    padding: 0.2em 0.5em;
}

h2, .about-us-title, .explore-fashion-title, .contact-title, .gallery-title, .location-title {
    font-family: 'Caveat', 'Shadows Into Light', cursive;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 15px;
}

h3, .about-us-title, .explore-fashion-title, .contact-title, .gallery-title, .location-title {
    font-family: 'Dancing Script', 'Shadows Into Light', cursive;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 15px;
}

.venusiana-identity {
    font-family: 'Dancing Script', 'Pacifico',cursive;
    font-size: 1.5em;            /* Matches your request */
    color: #c85b92;              /* Soft pinkish-purple */
    margin-bottom: 0;
    letter-spacing: 2px;         /* Optional: for consistency with .venusiana-title */
    font-weight: 700;            /* Optional: adds more prominence */
    background-color: #F5FBF9;   /* Optional: brand background */
    border-radius: 2em;          /* Optional: gentle rounding */
    padding: 0.1em 0.4em;        /* Optional: subtle padding */
}

.contact-address {
    background-color: #F5FBF9;         /* Light mint to match Venusiana brand */
    color: #602D6B;                    /* Deep purple for text */
    padding: 16px 20px;
    border-radius: 1.5em;
    font-family: 'Dancing Script', 'Pacifico', cursive;
    font-size: 1.1em;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(96,45,107,0.07);
}

.contact-address .contact-link {
    color: #c85b92;                    /* Soft pinkish-purple for link */
    text-decoration: underline;
    font-weight: 200;
    font-family: inherit;
}

.instagram-link-section {
    text-align: center;
    margin: 20px 0;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    background-color: #F5FBF9;         /* Light mint to match Venusiana brand */
    color: #602D6B;                    /* Deep purple for text */
    padding: 16px 24px;
    border-radius: 1.5em;
    font-family: 'Dancing Script', 'Pacifico', cursive;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(96,45,107,0.07);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background-color: #c85b92;         /* Brand pink on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96,45,107,0.15);
}

.instagram-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.instagram-text {
    font-weight: 400;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    max-width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-gallery, .fit-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}
.image-gallery img, .fit-gallery img, #image {
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(200, 91, 146, 0.15);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    background: #fff0f6;
    margin: 0;
}
.image-gallery img:hover, .fit-gallery img:hover, #image:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 8px 32px rgba(200, 91, 146, 0.25);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c85b92;
    outline: none;
}

.btn {
    background-color: #c85b92;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a64a7a;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin: 20px 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20c25a;
    color: white;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #ff69b4;
    color: white;
    border-radius: 10px;
}

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

a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    p {
        font-size: 1em;
    }
    
    header {
        padding: 15px;
    }
    
    .intro, .contact, .gallery, .location {
        padding: 15px;
        margin-top: 20px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .image-gallery img {
        height: 200px;
    }
    
    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .instagram-link {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .instagram-icon {
        font-size: 1.3em;
    }
}
@media (max-width: 900px) {
    h1, .venusiana-title {
        font-size: 2.2em;
    }
    h2, .about-us-title, .explore-fashion-title, .contact-title, .gallery-title, .location-title {
        font-size: 1.3em;
    }
    .image-gallery img, .fit-gallery img, #image {
        width: 170px;
        height: 220px;
    }
}

@media (max-width: 600px) {
    h1, .venusiana-title {
        font-size: 1.5em;
    }
    .image-gallery, .fit-gallery {
        gap: 8px;
    }
    .image-gallery img, .fit-gallery img, #image {
        width: 110px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    .image-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .image-gallery img {
        height: 180px;
    }
}
