@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
--color-red: #E71119;
--color-darkblue: #002045;
--color-white: #ffffff;
--color-lightgray: #f7f7f7;
--color-dim-white: rgba(255, 255, 255, 0.95);
--font-family-sans: 'Inter', sans-serif;
}
body {
font-family: var(--font-family-sans);
margin: 0;
padding-top: 80px;
color: var(--color-darkblue);
line-height: 1.6;
background-color: var(--color-white);
}
.container {
max-width: 1280px;
margin: 0 auto; 
padding: 0 20px;
}
h1, h2, h3, h4, h5 {
font-weight: 900;
margin-top: 0;
color: var(--color-white);
font-family: 'Times New Roman', serif;
}
.text-red { color: var(--color-red); }
.text-adleway-red { color: var(--color-red); }
.bg-adleway-red { background-color: var(--color-red); }
.text-adleway-dark { color: var(--color-darkblue); }
.bg-adleway-light-bg { background-color: var(--color-lightgray); }
.border-adleway-dark { border-color: var(--color-darkblue); }
.border-adleway-red { border-color: var(--color-red); }
/* ============
3. NAVBAR SECTION
=========== */
.navbar {
position: fixed;
top: 0;
width: 100%;
height: 80px;
z-index: 1000;
background-color: var(--color-white);
transition: background-color 0.3s, box-shadow 0.3s;
box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.navbar.scrolled {
background-color: var(--color-dim-white);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
.navbar .container {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-img {
height: 48px;
width: 170px;
display: block;
}
nav {
flex-grow: 1;
display: flex;
justify-content: center;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
position: relative;
}
nav ul li a {
color: var(--color-darkblue);
text-decoration: none;
padding: 10px 15px;
display: block;
font-weight: 700;
transition: color 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
color: var(--color-red);
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-white);
min-width: 250px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 10;
border-top: 3px solid var(--color-red);
border-radius: 4px;
overflow: hidden;
text-align: left;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: var(--color-darkblue);
padding: 12px 15px;
font-weight: 700;
font-size: 0.95rem;
transition: background-color 0.2s;
}
.dropdown-content a:hover {
background-color: var(--color-lightgray);
color: var(--color-red);
}
.btn {
padding: 12px 25px;
text-decoration: none;
font-weight: 700;
border: 2px solid transparent;
border-radius: 10px;
transition: 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap;
}
.btn-cta {
background-color: var(--color-red);
color: var(--color-white);
border-color: var(--color-red);
box-shadow: 0 4px 8px rgba(231, 17, 25, 0.3);
}
.btn-cta:hover {
background-color: var(--color-darkblue);
border-color: var(--color-darkblue);
color: var(--color-white);
box-shadow: 0 4px 12px rgba(0, 32, 69, 0.2);
}
.menu-toggle {
background: none;
border: none;
color: var(--color-darkblue);
font-size: 1.8rem;
cursor: pointer;
display: none;
transition: color 0.3s ease;
}
.menu-toggle:hover {
color: var(--color-red);
}
.nav-actions {
display: flex;
align-items: center;
gap: 10px;
}
@media (max-width: 1024px) {
.navbar {
height: 70px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 12px;
font-size: 0.95rem;
}
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.nav-actions {
gap: 8px;
}
}
/* Responsive Styles */
@media (max-width: 991px) {
.navbar .container {
padding: 0 15px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 10px;
font-size: 0.95rem;
}
}
@media (max-width: 768px) {
.navbar {
height: auto;
padding: 15px 0;
}
.navbar .container {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
border-top: 2px solid var(--color-red);
display: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
width: 100%;
text-align: left;
}
nav ul li a {
padding: 14px 25px;
border-bottom: 1px solid #eee;
}
.dropdown-content {
position: relative;
left: 0;
top: 0;
transform: none;
min-width: 100%;
box-shadow: none;
border: none;
}
.menu-toggle {
display: block; 
}
}
@media (max-width: 480px) {
.logo-img {
height: 60px;
width: 120px;
}
.nav-actions .btn-cta { 
display: none;
}}







/* ============
HERO SECTION 
============= */
.hero-section {
position: relative;
height: 90vh;
min-height: 400px;
background-image: url('images/gallery\ hero.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
color: #fff;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
}
.hero-content h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}
@media (max-width: 1024px) {
.hero-section {
height: 70vh;
background-attachment: scroll;
padding: 5rem 1rem;
}
.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero-content p {
font-size: 1.05rem;
margin-bottom: 1.5rem;
}
}
@media (max-width: 768px) {
.hero-section {
height: auto;
min-height: 350px;
padding: 4rem 1.2rem;
text-align: center;
background-position: center center;
}
.hero-content {
padding: 0 10px;
}
.hero-content h1 {
font-size: 1.9rem;
line-height: 1.3;
margin-bottom: 1rem;
letter-spacing: 1px;
}
.hero-content p {
font-size: 0.95rem;
margin-bottom: 1.2rem;
}
}
@media (max-width: 480px) {
.hero-section {
padding: 3.5rem 1rem;
}
.hero-content h1 {
font-size: 1.6rem;
}
.hero-content p {
font-size: 0.9rem;
}
}



/* ============= */
/* === GALLERY SECTION  === */
/* ================= */

.gallery-section {
background-color: var(--color-white); 
padding: 120px 0 60px 0;
overflow: hidden; 
}
.gallery-header {
margin-bottom: 50px; 
}
.gallery-sub {
color: var(--color-red);
font-size: 1rem;
font-weight: 900;
letter-spacing: 5px;
text-transform: uppercase;
margin-bottom: 8px;
}
.gallery-main {
font-family: var(--font-family-serif); 
font-size: 70px;
color: var(--color-darkblue); 
margin: 0;
}
.gallery-description {
font-size: 1.1rem;
color: var(--color-darkblue); 
margin-top: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.8;
}

.filter-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 60px;
margin-top: 30px;
}
.filter-btn {
background-color: var(--color-lightgray);
color: var(--color-darkblue);
padding: 10px 20px;
border: 2px solid var(--color-lightgray);
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 0.9rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
white-space: nowrap; 
}
.filter-btn:hover {
background-color: var(--color-red);
color: var(--color-white);
border-color: var(--color-red);
box-shadow: 0 4px 8px rgba(231, 17, 25, 0.2);
}
.filter-btn.active {
background-color: var(--color-darkblue);
color: var(--color-white);
border-color: var(--color-darkblue);
box-shadow: 0 4px 8px rgba(0, 32, 69, 0.3);
}


.modern-gallery-grid {     
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
gap: 20px;
padding: 0 20px;
grid-auto-flow: dense; 
grid-auto-rows: 1fr; 
grid-template-rows: auto; 
align-items: stretch;
}
.gallery-card {
display: block;
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 7px 20px rgba(1, 33, 72, 0.744);
cursor: pointer;
text-decoration: none;
padding-bottom: 100%; 
height: 0;
transition: opacity 0.4s ease-in-out;
}
.card-wide {
grid-column: span 2;
padding-bottom: 50%; 
}
.card-tall {
grid-row: span 2;
padding-bottom: 0; 
height: 100%; 
}
.gallery-card.hide {
display: none !important; 
opacity: 0;
pointer-events: none;
}
.card-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease, filter 0.6s ease;
}
.card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 32, 69, 0.2); 
display: flex; 
flex-direction: column;
justify-content: flex-end; 
align-items: flex-start;
padding: 25px;
color: var(--color-white);
transition: background 0.4s ease;
opacity: 0; 
}
.gallery-card:hover .card-overlay {
opacity: 1; 
background: rgba(0, 32, 69, 0.6); 
}
.gallery-card:hover .card-img {
transform: scale(1.05); 
}

.card-caption-text {
font-size: 1.25rem;
font-weight: 700;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
margin-bottom: 5px;
}
.card-category-text {
font-size: 0.9rem;
font-weight: 500;
color: var(--color-red);
}

/* =============== */
/* === LIGHTBOX / MODAL STYLES  === */
/* ================ */

#lightbox-modal {
display: none; 
position: fixed;
z-index: 2000;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.95);
animation: fadeIn 0.3s;
}
.modal-content {
margin: auto;
display: block;
width: 90%;
max-width: 1400px;
position: relative;
text-align: center;
}
#modal-image {
width: 100%;
height: auto;
max-height: 80vh; 
object-fit: contain;
border-radius: 8px;
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.304);
transition: opacity 0.3s;
}
.modal-caption {
margin-top: 15px;
font-size: 1.25rem;
color: var(--color-white);
font-weight: 600;
min-height: 1.5em; 
}
.close-btn {
position: absolute;
top: 20px;
right: 35px;
color: var(--color-white);
font-size: 40px;
font-weight: bold;
transition: 0.3s;
cursor: pointer;
opacity: 0.8;
z-index: 2001;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 50%;
width: 45px;
height: 45px;
line-height: 40px;
text-align: center;
}
.close-btn:hover,
.close-btn:focus {
color: var(--color-red);
opacity: 1;
text-decoration: none;
}
.nav-btn {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: var(--color-lightgray);
font-weight: bold;
font-size: 30px;
transition: 0.6s ease;
user-select: none;
text-decoration: none;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 10px;
}
.prev-btn {
left: 20px;
border-radius: 5px;
}
.next-btn {
right: 20px;
border-radius: 5px;
}
.nav-btn:hover {
background-color: rgba(231, 17, 25, 0.8); 
color: var(--color-white);
}
@keyframes fadeIn {
from {opacity: 0} 
to {opacity: 1}
}
@media (max-width: 900px) {
.filter-buttons {
gap: 8px;
}
.filter-btn {
padding: 8px 15px;
font-size: 0.8rem;
}
}
@media (max-width: 768px) {
#lightbox-modal {
display: none; 
position: fixed;
align-items: center;
justify-content: center; 
padding-top: 150px;        
}
.modal-content {
width: 95%;
margin: auto;
}
.close-btn {
top: 5px;
right: 15px;
font-size: 30px;
}
.nav-btn {
font-size: 20px;
padding: 10px;
margin-top: -30px;
}
.modern-gallery-grid {   
grid-template-columns: 1fr 1fr; 
grid-auto-flow: row;                
}
.gallery-card {
grid-column: span 1 !important;
grid-row: span 1 !important;
padding-bottom: 100%;
}
.card-wide, .card-tall {
grid-column: span 1;
grid-row: span 1;
padding-bottom: 100%; 
height: 0;
}
}
@media (max-width: 600px) {
.gallery-section {
padding: 60px 0;
}
.modern-gallery-grid {
grid-template-columns: 1fr; 
gap: 15px;
padding: 0 15px;
}
.prev-btn { left: 5px; }
.next-btn { right: 5px; }
}










/* === FOOTER === */
.main-footer {
position: relative;
padding-top: 40px;
color: #ffffff;
overflow: hidden;
background-color: #000000eb;
}
.footer-video-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.footer-video {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
}
.footer-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.041);
z-index: 1;
}
.footer-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(4, 1fr); 
gap: 40px;
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
max-width: 1300px;
 width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 30px;
}
.footer-col {
padding: 0;
}
.footer-logo-img {
max-width: 190px;
height: auto;
display: block;
margin-left: 0;
margin-top: 0;
border-radius: 10px;
}
.footer-logo {
margin-bottom: 10px;
}
.footer-tagline {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
margin-bottom: 30px;
}
.footer-heading {
font-size: 1.1rem;
font-weight: 700;
color: #E71119;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Times New Roman', serif;
}
.footer-contact-details {
margin-bottom: 30px;
}
.footer-contact-details p,
.footer-contact-details a {
display: block;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 5px;
transition: color 0.3s;
}
.footer-contact-details a:hover {
color: #E71119;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s, transform 0.3s;
display: inline-block;
}
.footer-links a:hover {
color: #E71119;
transform: translateX(5px);
}
.footer-socials .footer-social-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 1rem;
margin-right: 10px;
transition: background-color 0.3s;
}
.footer-socials .footer-social-icon:hover {
background-color: #E71119;
}
.footer-copyright {
position: relative;
z-index: 2;
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright p {
margin: 0;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 30px;
text-align: left;
}
.footer-logo-img {
margin: 0 auto;
align-items: left !important;
}
.footer-socials {
justify-content: center;
}
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr; 
gap: 30px;
}
.footer-logo-img {
margin: 0 auto 15px;
align-items: left !important;
}
.footer-tagline {
margin-bottom: 20px;
}
.footer-links a {
font-size: 0.95rem;
}
.footer-heading {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.footer-socials .footer-social-icon {
width: 36px;
height: 36px;
font-size: 0.9rem;
}
.footer-copyright p {
font-size: 0.8rem;
}
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.footer-content {
grid-template-columns: 1fr;
}
}
.reach-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.reach-icon {
font-size: 20px;
color: #E71119; 
margin-right: 10px;
margin-top: 3px;
}
.reach-text {
margin: 0;
color: white;
line-height: 1.6;
font-size: 0.95rem;
margin-top: 5px;
}
.reach-email {
color: white;
text-decoration: none;
font-size: 0.95rem;
transition: 0.3s;
margin-top: 5px;
}
.reach-email:hover {
color: #E71119;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr !important;
text-align: left !important;
}
.footer-col,
.footer-links,
.footer-links li,
.footer-links a,
.reach-item,
.reach-text,
.reach-email,
.footer-socials,
.footer-logo-bottom,
.footer-logo-img {
text-align: left !important;
justify-content: flex-start !important;
align-items: flex-start !important;
margin-left: 0 !important;
}
.footer-socials {
display: flex;
gap: 10px;
margin-top: 10px;
}
.footer-logo-bottom img {
margin-left: 0 !important;
}
}

@media (max-width: 991px) {
.navbar .container {
padding: 0 15px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 10px;
font-size: 0.95rem;
}
.btn-cta {
padding: 10px 20px;
font-size: 0.9rem;
}
}
@media (max-width: 768px) {
.navbar {
height: auto;
padding: 15px 0;
}
.navbar .container {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
border-top: 2px solid var(--color-red);
display: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
width: 100%;
text-align: left;
}
nav ul li a {
padding: 14px 25px;
border-bottom: 1px solid #eee;
}
.dropdown-content {
position: relative;
left: 0;
top: 0;
transform: none;
min-width: 100%;
box-shadow: none;
border: none;
}
.menu-toggle {
display: block; 
}
.btn-cta {
padding: 8px 16px;
font-size: 0.85rem;
}
.hero-content h1 {
font-size: 2.5rem;
}
.service-block {
grid-template-columns: 1fr;
gap: 2rem;
min-height: auto;
}
.service-block.reverse {
grid-template-columns: 1fr;
}
.service-feature {
position: static;
max-height: none;
}
.service-feature.right {
border-right: none;
border-left: 4px solid var(--color-red);
}
.service-feature.right .service-icon {
margin-left: 0;
}
.service-feature.right h3,
.service-feature.right p {
text-align: left;
}
.service-feature.right a {
float: none;
}
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
.footer-col-info {
grid-column: span 1;
}
.main-footer {
padding-top: 60px;
}
}
@media (max-width: 480px) {
.logo-img {
height: 60px;
width: 120px;
}
.nav-actions .btn-cta { 
display: none;
}
.hero-content h1 {
font-size: 2rem;
}
.services-intro h2 {
font-size: 2rem;
}
}
