* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --accent-orange: #f97316;
    --dark-orange: #ea580c;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e2e8f0;
    line-height: 1.6;
    background: #0f1419;
    overflow-x: hidden;
    position: relative;
}

h1,h2,h3 {
  font-family:'Rubik',sans-serif;
}

body, p, li {
  font-family:'Nunito',sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%),
        url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Navigation */
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* BRAND */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.nav-brand img {
    width: 50px;
    height: 50px;
}

/* MENU */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

/* ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Instagram */
.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.instagram-link svg {
    width: 22px;
    height: 22px;
}

.instagram-link:hover {
    background: #E1306C;
    transform: scale(1.1);
}

/* CTA Button */
.nav-cta {
    background: var(--accent-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}


/* Hero Section */
.hero-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-modern h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-modern p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Projects */
.hero-projects {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-projects h3 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hero-project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.5);
}

.hero-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.project-tag {
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.project-overlay h4 {
    font-size: 1rem;
    margin: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.section-header.center p {
    margin: 0 auto;
}

/* About Section */
.about-modern {
    padding: 4rem 0;
    background: transparent;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 4rem;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.credentials-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.credentials-badge svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.credentials-badge strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.credentials-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkatrade-logo img {
    max-width: 120px; /* Adjust this value */
    height: auto;
}

.about-content-side h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
}

.about-content-side p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.feature-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    color: white;
    margin-bottom: 0.15rem;
}

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Coverage Banner */
.coverage-banner {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.coverage-banner .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.coverage-banner svg {
    width: 50px;
    height: 50px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
}

.coverage-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.coverage-banner p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Services Modern */
.services-modern {
    padding: 4rem 0;
    background: transparent;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card-modern {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    transition: height 0.3s;
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.4);
}

.service-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.service-card-modern h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 0.75rem;
}

.service-card-modern ul {
    list-style: none;
}

.service-card-modern li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-size: 0.95rem;
}

.service-card-modern li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: transparent;
}

.gallery-main {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden; /* REQUIRED */
}

.gallery-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-slider img {
    flex: 0 0 100%;   /* IMPORTANT */
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

.gallery-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 1.5rem auto 0;
}

.gallery-counter {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

/* Before/After Section */
.before-after-section {
    padding: 4rem 0;
    background: transparent;
}

.ba-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.before-after-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-item {
    min-width: 100%;
    padding: 0 1rem;
}

.ba-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.ba-side {
    text-align: center;
}

.ba-label {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(30, 64, 175, 0.8));
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.ba-side.after .ba-label {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
}

.ba-side img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.ba-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.divider-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.8), var(--accent-orange));
}

.divider-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: bold;
}

.ba-description {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-modern {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.contact-simple {
    max-width: 900px;
    margin: 0 auto;
}

.contact-simple h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-intro {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-box {
    padding: 1.25rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-detail-box:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.contact-detail-box h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.contact-detail-box p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;   /* CENTER THEM */
    align-items: center;
}

.contact-btn {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
}

.email-btn {
    background: var(--accent-orange);
    color: white;
}

.email-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.call-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(249, 115, 22, 0.5);
}

.call-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
}

.contact-extra-info {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.contact-extra-info > h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: white;
}

.info-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 1rem;
    margin-bottom: 0;
}

.info-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.info-section p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Footer */
.footer-modern {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-contact p {
    opacity: 0.8;
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:hover svg {
    stroke: white;
}

.slider-btn svg {
    width: 22px;
    height: 22px;
    stroke: white;
    transition: stroke 0.3s;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 5px;
    border-color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-modern h1 {
        font-size: 2.25rem;
    }

    .hero-modern p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .ba-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .ba-side img {
        height: 250px;
    }

    .ba-divider {
        transform: rotate(90deg);
    }

    .divider-line {
        width: 80px;
        height: 2px;
    }

    .gallery-slider img {
        height: 350px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        text-align: center;
    }

    .coverage-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .coverage-banner svg {
        width: 40px;
        height: 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cursor for gallery */
.gallery-slider {
    cursor: grab;
}

.gallery-slider:active {
    cursor: grabbing;
}

.site-credit {
  color: rgba(233, 242, 234, .45);
  display: block;
  font-size: 12px;
  margin: 16px auto 0;
  text-align: center;
  width: 100%;
}


.site-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-credit a {
  color: rgba(233, 242, 234, .65);
  font-weight: 500;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 24px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animated Hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* MOBILE NAV */
@media (max-width: 900px) {

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide desktop menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 2000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
    }

    .nav-cta,
    .instagram-link {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 2100; /* IMPORTANT */
    }
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}
