/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block; /* Removes extra space below the image */
}

/* --- Banner Styling --- */
.banner {
    background-color: #ff99aa; /* A nice, beachy pink */
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* --- Model Showcase Styling --- */
.model-showcase {
    text-align: center;
    margin-bottom: 40px;
}

.model-frame img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.model-showcase p {
    font-style: italic;
    margin-top: 10px;
    color: #555;
}

/* --- Bikini Gallery Styling --- */
.bikini-gallery h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff6688; /* Accent color */
}

.gallery-grid {
    display: grid;
    /* Create 4 columns on large screens */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.bikini-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.bikini-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bikini-item img {
    border-radius: 6px;
    margin-bottom: 10px;
    object-fit: cover; /* Ensures images fill the frame neatly */
    height: 400px; /* Fixed height for consistent look */
}

.bikini-title {
    font-weight: bold;
    margin: 5px 0;
}

.bikini-item button {
    background-color: #ff6688;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.bikini-item button:hover {
    background-color: #ff4d7a;
}

/* --- Footer Styling --- */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
}

/* --- Responsiveness for smaller screens (e.g., tablets/mobiles) --- */
@media (max-width: 900px) {
    .gallery-grid {
        /* Change to 2 columns on medium screens */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 550px) {
    .banner h1 {
        font-size: 2em;
    }
    .gallery-grid {
        /* Change to 1 column on small screens */
        grid-template-columns: 1fr; 
    }
}