/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header centered content */
header {
    text-align: center;
    position: relative;
}

/* Logo */
header .logo {
    max-width: 300px;
    height: auto;
}

/* Hamburger menu - hidden on desktop */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Desktop menu */

/* Make nav a flex container and center the menu */
header nav {
    display: flex;
    justify-content: center;  /* center the menu horizontally */
}

/* Menu items */
header nav ul.menu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    gap: 20px;
}

header nav ul.menu li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    white-space: nowrap;
    transition: color 0.2s;
}

header nav ul.menu li a:hover {
    color: #ff6600;
}

/* Mobile responsive menu */
@media screen and (max-width: 768px) {
    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Hide menu by default */
    header nav ul.menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    header nav ul.menu.active {
        display: flex; /* Show menu when hamburger clicked */
    }
}

main {
    margin-top: 40px;
    text-align: center;
}

main h2 {
    font-size: 28px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.hero p, .achievements p, .services-preview p, .gallery-preview p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

ul {
    list-style: disc;
    margin: 10px auto;
    padding-left: 20px;
    max-width: 600px;
    text-align: left;
}

/* Under Construction Bar */
.under-construction {
    background-color: #ffcc00; /* Bright yellow to stand out */
    color: #000;               /* Black text for contrast */
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    font-size: 1.1em;
    border-bottom: 3px solid #333; /* optional border for emphasis */
}

footer {
    margin-top: 40px;
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 10px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}
/* Mobile menu: stack items vertically */
@media screen and (max-width: 600px) {
    header nav ul.menu {
        flex-direction: column;  /* stack menu items */
        gap: 5px;                /* smaller gap for mobile */
    }

    header nav ul.menu li a {
        padding: 8px 0;          /* more touch-friendly spacing */
        white-space: normal;     /* allow text to wrap if needed */
    }
}
