@font-face 
{
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face 
{
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face 
{
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face 
{
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html 
{
    scroll-behavior: smooth;
}

body 
{
    background-color: rgb(13, 13, 13);
    color: rgb(255, 255, 255);
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a 
{
    text-decoration: none;
    color: inherit;
}

/* Global styles */

.navbar 
{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
    max-width: 800px;
    justify-content: center;
}

.navbar-shape 
{
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 8px 16px;
}

.navbar-link 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    padding: 6px 16px;
    border-radius: 999px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.navbar-link:hover,
.navbar-link.active 
{
    background: rgba(255, 255, 255, 0.15);
}

.theme-toggle 
{
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 16px;
    padding: 6px 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.theme-toggle:hover 
{
    color: rgb(170, 170, 170);
}

/* light mode */

.light-mode
{
    background-color: rgb(245, 245, 245);
    color: rgb(20, 20, 20);
}

.light-mode .navbar-shape
{
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.light-mode .navbar-link
{
    color: rgb(20, 20, 20);
}

.light-mode .navbar-link:hover
{
    background: rgba(0, 0, 0, 0.08);
}

.light-mode .navbar-link.active
{
    background: rgba(0, 0, 0, 0.08);
}

.light-mode .theme-toggle
{
    color: rgb(20, 20, 20);
}

.light-mode .services-section
{
    background: rgb(245, 245, 245);
}

.light-mode .section-title
{
    color: rgb(20, 20, 20);
}

.light-mode .footer
{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .footer-inner
{
    color: rgb(80, 80, 80);
}

.light-mode .footer-inner a
{
    color: rgb(80, 80, 80);
}

.light-mode .footer-inner a:hover
{
    color: rgb(20, 20, 20);
}

.light-mode .about-title
{
    color: rgb(20, 20, 20);
}

.light-mode .about-intro
{
    color: rgb(60, 60, 60);
}

.light-mode .about-text h2
{
    color: rgb(20, 20, 20);
}

.light-mode .about-text p
{
    color: rgb(60, 60, 60);
}

.light-mode .about-services-title
{
    color: rgb(20, 20, 20);
}

.light-mode .pricing-title
{
    color: rgb(20, 20, 20);
}

.light-mode .pricing-card
{
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .pricing-plan
{
    color: rgb(20, 20, 20);
}

.light-mode .pricing-features li
{
    color: rgb(60, 60, 60);
}

.light-mode .gallery-title
{
    color: rgb(20, 20, 20);
}

.light-mode .filter-btn
{
    color: rgb(20, 20, 20);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.light-mode .filter-btn:hover
{
    background: rgba(0, 0, 0, 0.06);
}

.light-mode .filter-btn.active
{
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.4);
}

.light-mode .contact-title
{
    color: rgb(20, 20, 20);
}

.light-mode .contact-intro
{
    color: rgb(60, 60, 60);
}

.light-mode .contact-form-wrap
{
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .contact-input
{
    color: rgb(20, 20, 20);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.light-mode .contact-textarea
{
    color: rgb(20, 20, 20);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.light-mode .contact-input::placeholder
{
    color: rgb(140, 140, 140);
}

.light-mode .contact-textarea::placeholder
{
    color: rgb(140, 140, 140);
}

.light-mode .mobile-menu
{
    background: rgb(245, 245, 245);
}

.light-mode .mobile-link
{
    color: rgb(20, 20, 20);
}

/* Home page styles */

.hero 
{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay 
{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-slider
{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide
{
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.slick-list
{
    height: 100vh;
}

.slick-track
{
    height: 100vh;
}

.slick-slide
{
    height: 100vh;
}

.hero-content 
{
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 2;
}

.hero-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(60px, 10vw, 130px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 0.75;
    color: rgb(255, 255, 255);
    animation: fadeSlideUp 1s ease forwards;
}

.hero-tag
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(170, 170, 170);
    margin-top: 20px;
    margin-left: 7px; 
    line-height: 1.2;
    animation: fadeSlideUp 1s ease 0.3s forwards;
    opacity: 0;
}

/* Hero text fade in */
@keyframes fadeSlideUp 
{
    0% 
    {
        opacity: 0;
        transform: translateY(30px);
    }
    100% 
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section 
{
    padding: 80px 5%;
    background: rgb(13, 13, 13);
}

/* Centre service title */
.section-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.services-grid 
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.service-card 
{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

/* Zoom image when hovering */
.service-card:hover .service-img 
{
    transform: scale(1.05);
}

.service-info 
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.service-info h3 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 4px;
}

.service-info p 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    color: rgb(170, 170, 170);
}

.service-img 
{
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.banner-section 
{
    position: relative;
    height: 400px;
    margin: 0 5% 80px;
    border-radius: 16px;
    overflow: hidden;
}

.banner-img 
{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Dark overlay on the banner image */
.banner-overlay 
{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Positions the text in the lower left of the banner */
.banner-text 
{
    position: absolute;
    bottom: 300px;
    left: 40px;
    z-index: 1;
}

/* Italic heading on the banner */
.banner-text h2 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    font-style: bold;
    color: rgb(255, 255, 255);
}

/* Zooms footer banner when hovered */
.banner-section:hover .banner-img 
{
    transform: scale(1.03);
}

.footer 
{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 5%;
}

.footer-inner 
{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    color: rgb(170, 170, 170);
}

.footer-inner a 
{
    color: rgb(170, 170, 170);
    transition: color 0.3s ease;
}

.footer-inner a:hover 
{
    color: rgb(255, 255, 255);
}

/* About page styles */

.about-section 
{
    padding: 120px 5% 80px;
    flex: 1;
}

.about-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.about-intro 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(200, 200, 200);
    max-width: 575px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.about-content 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-img 
{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.about-text h2 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
    margin-top: 24px;
}

.about-text h2:first-child 
{
    margin-top: 0;
}

.about-text p 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(200, 200, 200);
    line-height: 1.8;
}

/* Credentials list with amber checkmarks */
.credentials-list 
{
    list-style: none;
    margin-top: 8px;
}

.credentials-list li 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(224, 168, 85);
    line-height: 2;
}

.credentials-list li::before 
{
    content: '✓ ';
}

/* Services page styles */

.about-services-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
    margin-top: 24px;
}

.about-service-img 
{
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.pricing-section 
{
    padding: 0 5% 80px;
}

.pricing-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

.pricing-grid 
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pricing-card 
{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
}

.pricing-plan 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.pricing-price 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(224, 168, 85);
    margin-bottom: 20px;
}

.pricing-price-contact 
{
    font-size: 24px;
}

.pricing-features 
{
    list-style: none;
}

.pricing-features li 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: rgb(200, 200, 200);
    line-height: 2;
    padding-left: 4px;
}

.pricing-features li::before 
{
    content: '• ';
    color: rgb(200, 200, 200);
}

/* Gallery page styles */

.gallery-section 
{
    padding: 120px 5% 80px;
    flex: 1;
}

.gallery-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

/* Filter buttons */

.gallery-filters 
{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-btn 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover 
{
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active 
{
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Gallery grid */

.gallery-grid 
{
    columns: 3;
    column-gap: 12px;
}

.gallery-item 
{
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img 
{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

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

/* Hidden state for filtered items */
.gallery-item.hidden 
{
    display: none;
}

/* Contact page styles */

.contact-section 
{
    padding: 120px 5% 60px;
    flex: 1;
}

.contact-title 
{
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}

.contact-intro 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(200, 200, 200);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-layout 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
}

/* Form */

.contact-form-wrap 
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.contact-input,
.contact-textarea 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-input::placeholder,
.contact-textarea::placeholder 
{
    color: rgb(130, 130, 130);
}

.contact-input:focus,
.contact-textarea:focus 
{
    border-color: rgba(255, 255, 255, 0.35);
}

.contact-textarea 
{
    resize: vertical;
    min-height: 120px;
}

.contact-submit 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.contact-submit:hover 
{
    background: rgba(255, 255, 255, 0.2);
}

.contact-success 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: rgb(224, 168, 85);
    display: none;
    margin-top: 4px;
}

.contact-success.visible 
{
    display: block;
}

/* Info column */

.contact-info 
{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-promo 
{
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgb(224, 168, 85);
    border-radius: 16px;
    padding: 24px;
}

.contact-promo-tag 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgb(224, 168, 85);
    display: block;
    margin-bottom: 10px;
}

.contact-promo-heading 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.contact-promo-sub 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: rgb(170, 170, 170);
    line-height: 1.7;
}

.contact-details 
{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-details-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 6px;
}

.contact-details p,
.contact-details a 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: rgb(170, 170, 170);
    transition: color 0.3s ease;
}

.contact-details a:hover 
{
    color: rgb(255, 255, 255);
}

/* Map */

.contact-map-wrap 
{
    margin: 40px 5% 60px;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}

.contact-map 
{
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-error
{
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: rgb(220, 80, 80);
}

/* Global styles for mobile */

/* Contact mobile */

@media (max-width: 768px) 
{
    .contact-layout 
    {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap 
    {
        height: 300px;
        margin: 40px 4% 60px;
    }
}

/* Gallery mobile */

@media (max-width: 768px) 
{
    .gallery-grid 
    {
        columns: 2;
    }

    .gallery-filters 
    {
        gap: 6px;
    }
}

@media (max-width: 480px) 
{
    .gallery-grid 
    {
        columns: 1;
    }
}

/* Services pricing mobile */
@media (max-width: 768px) 
{
    .pricing-grid 
    {
        grid-template-columns: 1fr;
    }
}

/* Hamborgor menu */
.hamburger 
{
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu 
{
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px;
    width: 90%;
    max-width: 400px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open 
{
    display: flex;
}

.mobile-link 
{
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    color: rgb(255, 255, 255);
}

.mobile-link:hover,
.mobile-link.active 
{
    background: rgba(255, 255, 255, 0.1);
}

/* Abything below 768px */
@media (max-width: 768px) 
{
    /* Hide desktop navbar */
    .navbar-shape
    {
        display: none;
    }

    /* Show borgor menu button */
    .hamburger 
    {
        display: flex;
    }

    /* Stack service cards */
    .services-grid 
    {
        grid-template-columns: 1fr;
    }

    .service-img 
    {
        width: 100%;
        height: 250px;
    }

    .banner-section 
    {
        height: 280px;
        margin: 0 4% 60px;
    }

    .footer-inner 
    {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Mobile only 480px */
@media (max-width: 480px) 
{
    /* Moves the hero text slightly for small screens */
    .hero-content 
    {
        left: 4%;
        bottom: 15%;
    }
}