/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ff3333;
    --accent-color: #666666;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    background: white !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Logo Image */
.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

/* Old logo styles for other pages */
.nav-brand a {
    text-decoration: none;
    display: inline-block;
}

.nav-brand .logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    outline: none;
}

.nav-link:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.nav-link:focus:not(:focus-visible) {
    outline: none;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link.active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 1rem 0;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255,51,51,0.1);
    color: var(--secondary-color);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Hide close button on desktop */
.nav-menu-close {
    display: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Split Layout */
.hero-split {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-image-left {
    flex: 1;
    width: 50%;
    overflow: hidden;
    background: #333;
}

.hero-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.hero-content-right {
    flex: 1;
    width: 50%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    text-align: center;
}

.hero-content-right .hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.hero-content-right .hero-description {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.btn-book-now {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
}

.btn-book-now:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Original Hero Section (for other pages) */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff3333" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,51,51,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--accent-color);
    line-height: 1.6;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    min-height: 400px;
}

.gallery-placeholder {
    background: var(--bg-light);
    border-radius: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
    background: var(--bg-dark);
    cursor: pointer;
}

.gallery-item img,
.gallery-item picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    z-index: 0;
}

.gallery-item picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide images until fully loaded */
.gallery-item img.image-loading,
.gallery-item picture.image-loading {
    opacity: 0;
    visibility: hidden;
}

.gallery-item img.image-loaded,
.gallery-item picture.image-loaded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Loading placeholder */
.gallery-item .image-loading-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    z-index: 1;
    /* Inherit aspect ratio from parent */
    aspect-ratio: inherit;
}

.gallery-item .image-loading-placeholder.hidden {
    display: none;
}

.gallery-item .image-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item img {
    cursor: pointer;
}

.gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-link:hover {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.pagination-info {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    text-align: center;
}

.booking-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.booking-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.booking-note {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Simple Footer for Homepage */
.footer-simple {
    background: white;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-simple-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    font-size: 1.5rem;
    color: #333;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social a .fa-facebook {
    color: #1877f2;
}

.footer-social a .fa-instagram {
    color: #e4405f;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-privacy {
    text-align: center;
}

.footer-privacy a {
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-privacy a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInDown 0.8s ease;
}

.animate-slide-up {
    animation: slideUp 0.8s ease 0.2s both;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.4s both;
}

.animate-fade-in-delay {
    animation: fadeInDown 0.8s ease 0.6s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Responsive Styles for Split Hero */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .hero-image-left,
    .hero-content-right {
        width: 100%;
    }
    
    .hero-image-left {
        background: var(--primary-color);
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-left img {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
    
    .hero-content-right {
        padding: 3rem 2rem;
        margin-top: 0;
    }
    
    .hero-content-right .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-simple-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    /* Hide hamburger button when menu is open */
    .nav-toggle.active {
        display: none !important;
    }
    
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
    }
    
    /* Close button for mobile menu - show only on mobile */
    .nav-menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        z-index: 1002;
        outline: none;
    }
    
    .nav-menu-close:focus-visible {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
    
    .nav-menu-close:focus:not(:focus-visible) {
        outline: none;
    }
    
    .nav-menu-close:hover {
        color: var(--secondary-color);
    }
    
    /* Backdrop overlay */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        color: var(--text-light);
        font-size: 1.5rem;
        font-weight: 400;
        padding: 1rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        letter-spacing: 2px;
        outline: none;
    }
    
    .nav-menu .nav-link:focus-visible {
        outline: 2px solid var(--secondary-color);
        outline-offset: -2px;
    }
    
    .nav-menu .nav-link:focus:not(:focus-visible) {
        outline: none;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--secondary-color);
        border-bottom-color: var(--secondary-color);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
        border: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        display: block;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.2rem;
        padding: 0.8rem 0 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        text-decoration: none;
        transition: color 0.3s ease;
        outline: none;
    }
    
    .dropdown-menu a:focus-visible {
        outline: 2px solid var(--secondary-color);
        outline-offset: -2px;
    }
    
    .dropdown-menu a:focus:not(:focus-visible) {
        outline: none;
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        color: var(--secondary-color);
    }
    
    .dropdown-toggle {
        cursor: pointer;
        outline: none;
    }
    
    .dropdown-toggle:focus-visible {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
    
    .dropdown-toggle:focus:not(:focus-visible) {
        outline: none;
    }
    
    .dropdown-toggle i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-split {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .hero-image-left,
    .hero-content-right {
        width: 100%;
    }
    
    .hero-image-left {
        background: var(--primary-color);
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-left img {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
    
    .hero-content-right {
        padding: 3rem 2rem;
        margin-top: 0;
    }
    
    .hero-content-right .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-simple-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Portfolio Lightbox Modal */
.portfolio-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-picture {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    z-index: 10001;
    max-width: 80%;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        bottom: 10px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
}
