:root {
    --primary-color: #2C3E50;
    --accent-color: #E67E22;
    --text-dark: #1A252F;
    --text-light: #ECF0F1;
    --bg-light: #F8F9FA;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}
.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255,255,255,0.9) !important;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.25)
    );
    padding: 6px 10px;
    border-radius: 6px;
}

.text-accent {
    color: var(--accent-color) !important;
}

.section-padding {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.navbar.scrolled .navbar-brand {
    color: var(--text-dark);
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}

.navbar-toggler-icon-custom {
    font-size: 1.5rem;
    color: #fff;
}

.navbar.scrolled .navbar-toggler-icon-custom {
    color: var(--text-dark);
}

/* Fullscreen Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: -76px; /* Offset navbar height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.about-img-1 {
    width: 90%;
    position: relative;
    z-index: 2;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    z-index: 3;
    border: 5px solid #fff;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.view-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: var(--transition);
}

.view-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Contact Form */
.contact-form {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control:focus {
    box-shadow: none;
    background: #fff;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important; /* Hide default bootstrap menu */
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}
