@charset "utf-8";
/* Global Box-Sizing for consistent layout calculation */
html {
    box-sizing: border-box;
    scroll-behavior: smooth; /* Keep for smooth scrolling */
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* Ensure images scale within their containers by default */
img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

body {
	font-family: "Lato", sans-serif;
  	font-weight: 600;
	background-color: #FFFFFF;
	padding: 0;
	margin: 0;
}

header {
    position: relative;
    z-index: 10;
    height: 80px;
    padding: 0px 30px;
    box-sizing: border-box;
    margin-bottom: 45px;
	margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

nav {
    display: flex;
    align-items: center;
}

.navi {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
	text-align: center;
	font-size: 20px;
}

li a, .dropbtn {
	display: inline-block;
	color: #000000;
	text-decoration: none;
	text-align: center;
	padding: 14px 16px;
}

li a:hover, .dropdown:hover .dropbtn {
	background-color: #1BC6CE;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	z-index: 2;
	background-color:#1BC6CE;
	min-width: 160px;
}

.dropdown-content a {
	color:#000000;
	display: block;
	text-decoration: none;
	text-align: left;
	padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
	background-color: #000000;
	color: #1BC6CE;
}

#logo {
    width: 280px;
    height: 45px;
    flex-shrink: 0;
}

/* Hamburger Menu Styles - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Add styling for hr to create separation */
hr {
    margin: 0;
    border: none;
    height: 1px;
    background-color: #E0E0E0;
}

h1 {
	font-size: 70px;
	margin: 150px 325px 40px;
	color: #FFFFFF;
	padding: 20px 40px;
	background-color: #1BC6CE;
	text-align: center;
}

.PRODUCT-PHOTOGRAPHY img {
	width: 32.5%;
	align-content: center;
	display: block;
}

footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 20px;
}

/* --- Footer Navigation (Left Column - Make Closer) --- */
.nav-footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    text-align: left;
}

.nav-footer li {
    margin-bottom: 0;
}

.nav-footer li a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    padding: 2px 0;
    line-height: 1.5;
    text-align: left;
}

.nav-footer li a:hover {
    color: #1BC6CE;
    background-color: transparent;
}

/* --- Footer Contacts Alignment (Right Column - Closer and Aligned with Icons) --- */
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.contact-line:hover {
	color: #1BC6CE;
}

.footer-contacts p {
    margin: 0;
    font-weight: bold;
    color: #FFFFFF;
}

/* Style for each individual contact line (icon + text) */
.contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 16px;
}

.contact-line img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.contact-line span {
    margin: 0;
    padding: 0;
}

.copyright {
	text-align: center;
	padding: 5px 20px 10px 10px;
	color: #FFFFFF;
}

.photo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.photo-row img {
  width: calc(33.333% - 20px);
  max-width: 300px;
  height: auto;
  object-fit: cover;
}

.mobile-nav {
  display: none;
}

/* --- Lightbox Styles for type of services gallery.html --- */

/* The Modal Overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    overflow: auto;
    flex-direction: column;
}

/* When the JavaScript adds the 'active' class, display the overlay */
.lightbox-overlay.active {
    display: flex;
}

/* Lightbox Content (The Enlarged Image and Close Button Container) */
.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
}

/* The Image Itself */
.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

/* The Close Button */
.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #1BC6CE;
    text-decoration: none;
}

/* Optional: Prevent body scrolling when lightbox is active */
body.modal-open {
    overflow: hidden;
}

/* Apply animation when the lightbox is active */
.lightbox-overlay.active .lightbox-img {
    animation-name: lightboxZoom;
    animation-duration: 0.3s;
    transform-origin: center center;
}

/* The @keyframes rule should remain the same as you had it */
@keyframes lightboxZoom {
    from {transform: scale(0.1);}
    to {transform: scale(1);}
}

.book-now-button {
    background-color: #000000;
    color: #FFFFFF;
    padding: 20px 60px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    margin: 50px auto;
}

.book-now-button a {
	text-decoration: none;
	color: #FFFFFF;
}

.book-now-button:hover {
    background-color: #1BC6CE;
}

.book-now-button:hover a {
    color: #FFFFFF;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: box-shadow 0.3s, opacity 0.3s;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollToTopBtn img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s;
}

#scrollToTopBtn:hover img {
    transform: translateY(-2px);
}

/* ----------------------------------------
   RESPONSIVE STYLES
---------------------------------------- */

/* Tablet Styles */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
        height: auto;
        min-height: 80px;
    }

    .top-bar {
        padding: 0 30px;
        max-width: 100%;
    }

    #logo {
        width: 220px;
        height: auto;
    }

    .navi {
        gap: 15px;
        font-size: 18px;
    }

    .navi li a, .dropbtn {
        padding: 12px 14px;
    }

    h1 {
        font-size: 40px;
        margin: 100px 40px 30px;
        padding: 15px 25px;
    }

    .photo-row {
        flex-direction: column;
        align-items: center;
    }

    .PRODUCT-PHOTOGRAPHY img {
        width: 90%;
    }

    .footer-text {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-footer,
    .footer-contacts {
        align-items: center;
        text-align: center;
    }

    .nav-footer {
        flex-direction: column;
    }

    .book-now-button {
        font-size: 18px;
        padding: 15px 40px;
    }

    #scrollToTopBtn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        height: 70px;
    }

    .top-bar {
        padding: 0 10px;
    }

    #logo {
        width: 180px;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide desktop navigation */
    nav {
        display: none;
    }

    /* Mobile navigation styles */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: #FFFFFF;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav .navi {
        flex-direction: column;
        gap: 0;
        font-size: 18px;
    }

    .mobile-nav .navi li {
        width: 100%;
        border-bottom: 1px solid #E0E0E0;
    }

    .mobile-nav .navi li:last-child {
        border-bottom: none;
    }

    .mobile-nav .navi li a,
    .mobile-nav .dropbtn {
        display: block;
        width: 100%;
        padding: 15px 10px;
        text-align: left;
        border-radius: 0;
    }

    .mobile-nav .dropdown-content {
        position: static;
        display: none;
        background-color: #f8f8f8;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
    }

    .mobile-nav .dropdown.active .dropdown-content {
        display: block;
    }

    .mobile-nav .dropdown-content a {
        padding: 10px 15px;
        font-size: 16px;
    }

    /* Close button for mobile menu */
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: #000;
    }

    h1 {
        font-size: 28px;
        margin: 50px 20px 30px;
        padding: 15px 20px;
    }

    .photo-row img {
        width: calc(50% - 10px);
    }
	
	.mobile-nav {
    	display: block; /* or flex/grid/inline-block depending on what it is */
  }
	
	.photo-grid img {
    width: calc(50% - 20px);
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
        height: 60px;
    }

    #logo {
        width: 150px;
    }

    .mobile-nav {
        width: 90%;
        padding: 60px 15px 15px;
    }

    .mobile-nav .navi {
        font-size: 16px;
    }

    .mobile-nav .navi li a,
    .mobile-nav .dropbtn {
        padding: 12px 8px;
    }

    h1 {
        font-size: 24px;
        margin: 30px 15px 20px;
        padding: 10px 15px;
    }

    .photo-row {
        gap: 10px;
        padding: 15px;
    }

    .photo-row img {
        width: 100%;
    }

    .book-now-button {
        font-size: 16px;
        padding: 12px 30px;
        margin: 30px auto;
    }

    #scrollToTopBtn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
	
	.photo-grid img {
    	width: 100%;
  }
}