/* --- STYLESHEET FOR DALATMILKSHOPDANANG.COM LANDING PAGE --- */
:root {
    --primary-blue: #0A66C2; /* Dalatmilk-like blue */
    --secondary-green: #28A745; /* Call to action green */
    --light-blue: #EBF2FA;
    --dark-text: #333;
    --medium-text: #555;
    --light-text: #777;
    --white-color: #ffffff;
    --bg-light: #f8f9fa;
}

/* Basic Reset & Font */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    color: var(--dark-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 0;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--secondary-green);
}

/* Layout Container */
.container {
    max-width: 960px;
    margin: 30px auto;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px); /* Adjust for margin */
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--primary-blue), #2c7ada);
    color: var(--white-color);
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
}
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--secondary-green), #4CAF50);
}

.header .logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 4px solid var(--white-color);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.header h1 {
    font-size: 2.6em;
    margin: 0 0 10px;
    color: var(--white-color);
    line-height: 1.2;
}

.header .tagline {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.main-content {
    padding: 30px 40px;
    flex-grow: 1; /* Allows content to take up remaining space */
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: var(--medium-text);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-item .icon {
    font-size: 2.5em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--primary-blue);
}
.info-item p {
    font-size: 0.95em;
    color: var(--medium-text);
    margin-bottom: 0;
}
.info-item a {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Call To Action Button */
.cta-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-green);
    color: var(--white-color);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.25em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button .fa-shopping-cart {
    margin-right: 10px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.5);
    background: #218838;
}

/* Google Map */
.map-section {
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-section h2 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 25px 20px;
    text-align: center;
    font-size: 0.9em;
    margin-top: auto; /* Push footer to bottom */
    border-top: 5px solid var(--secondary-green);
}
.footer p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
    }
    body {
        padding: 0;
    }
    .header h1 {
        font-size: 2em;
    }
    .header .tagline {
        font-size: 1em;
    }
    .main-content {
        padding: 25px 20px;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .map-section iframe {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .header {
        padding: 30px 15px;
    }
    .header h1 {
        font-size: 1.8em;
    }
    .header .logo {
        max-width: 100px;
    }
    .main-content {
        padding: 20px 15px;
    }
}
