/* Brand colors:
   Primary Dark: #000000 (black)
   Background Grey: #cccccc
   Brand Accent Pink: rgb(255, 20, 147)
   Dark Card Background: #121212
   White text: #ffffff
   Muted text: #a0a0a0
*/

html, body {
    margin: 0;
    padding: 0;
    background-color: #cccccc; /* Unified grey background for the entire section under the header */
    color: #121212; /* Dark text for contrast outside cards */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* Header with background image */
.logo-header {
    background-image: url('logo_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid rgb(255, 20, 147);
}

.logo-container {
    max-width: 250px;
    margin: 0 auto;
}

.logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.2);
}

/* Content area */
.content-container {
    width: 100%;
    margin: 0;
    padding: 0 0 100px 0; /* space at bottom for fixed footer */
}

/* Address section */
.address-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px; /* Reduced bottom padding to flow into columns */
    text-align: center;
}

.address-section h1 {
    font-size: 2.4rem;
    color: #000000; /* Pitch black for high contrast */
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.address-text {
    font-size: 1.3rem;
    color: #222222; /* Darker grey for readability */
    margin: 0;
    font-weight: 500;
}

/* Columns Section - seamless transition with unified background */
.columns-section {
    padding: 30px 20px 60px 20px;
    box-sizing: border-box;
}

.columns-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Info Columns as individual cards */
.info-column {
    flex: 1 1 450px;
    max-width: 550px;
    background-color: #121212; /* Dark card background remains the same */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Softer shadow for light background */
    border: 1px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    color: #ffffff; /* White text inside cards */
}

.info-column h2 {
    font-size: 1.6rem;
    color: rgb(255, 20, 147); /* Changed to brand pink */
    margin: 0;
    border-bottom: 2px solid rgb(255, 20, 147);
    padding-bottom: 12px;
    font-weight: 600;
}

.column-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gps-text, .contact-text {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin: 0;
}

.gps-text a, .contact-text a {
    color: rgb(255, 20, 147);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px dashed transparent;
}

.gps-text a:hover, .contact-text a:hover {
    color: #ff69b4;
    border-bottom: 1px dashed #ff69b4;
}

/* Map wrapper styling */
.map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    background-color: #1a1a1a;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000000;
    border-top: 1px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #888888;
}

@media (max-width: 992px) {
    .columns-container {
        gap: 30px;
    }
    .info-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .address-section h1 {
        font-size: 1.8rem;
    }
    .logo-container {
        max-width: 180px;
    }
    .info-column {
        padding: 20px;
    }
    .map-wrapper iframe {
        height: 280px;
    }
}
