/* GENERAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
    display: flex;
}

/* LEFT NAVIGATION */
.vertical-nav {
    width: 140px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.vertical-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.vertical-nav ul li {
    margin: 20px 0;
}

.vertical-nav ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 600;
}

.vertical-nav ul li a:hover {
    color: navy;
    background-color: #fff4e1; /* cream */
    transform: scale(1.1);
}

/* MAIN CONTENT */
main {
    margin-left: 140px; /* space for vertical nav */
    padding-top: 60px;  /* space for header */
    flex: 1;
}

/* HEADER */
header {
    text-align: center;
    margin-top: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 5px;
}

/* CONTACT INFO BELOW NAME */
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 8px;                 /* spacing between lines */
    background-color: #fff; /* light cream background */
    padding: 15px 20px;        /* space inside the box */
    border-radius: 12px;       /* rounded corners */
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1); /* subtle shadow */
    max-width: 300px;          /* optional width */
    margin: 20px auto;         /* center under the logo */
    text-align: left;
}

.contact-box a {
    color: #0077cc;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}


/* SECTIONS */
.section {
    padding: 30px 30px;
    margin: 0; 
    min-height: auto; /* ensure visibility */
    text-align: center;
}

/* SERVICES */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.service-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.gallery-photo {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.gallery-photo.show {
    opacity: 1;
    transform: translateY(0);
}
