* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cormorant Garamond",
        serif!important;
    line-height: 1.6;
    background: white;
    color: black;
}


.clrp{
color: #fff;
font-size: 45px;
font-weight: 1000;
line-height: 5.6rem;
}

@media(max-width:1000px)
{
.clrp{
color: #fff;
font-size: 35px;
font-weight: 1000;
line-height: 5rem;
}
}

@media(max-width:800px)
{
.clrp{
color: #fff;
font-size: 30px;
font-weight: 1000;
line-height: 4rem;
}
}

@media(max-width:400px)
{
.clrp{
color: #fff;
font-size: 30px;
font-weight: 1000;
line-height: 3.5rem;
}
p{
  font-size: 15px!important; 
  line-height: 2.1rem;
}
}

@media(max-width:300px)
{
.clrp{
color: #fff;
font-size: 25px;
font-weight: 1000;
line-height: 3.5rem;
}
p{
  font-size: 15px!important; 
  line-height: 2.1rem;
}
}

section {
    padding: 0 5vw;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 2rem;
    /* 32px */
    text-align: center;
    text-transform: uppercase;
}

h2 {
    font-size: 1.75rem;
    /* 28px */
    text-align: center;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    /* 24px */
}

h4 {
    font-size: 1.25rem;
    /* 20px */
}

h5 {
    font-size: 1.125rem;
    /* 18px */
}

h6 {
    font-size: 1rem;
    /* 16px */
}

p {
    font-size: 18px;
    padding: 10px 0;
    /* 16px */
}

@media (min-width: 640px) {
    h1 {
        font-size: 2.5rem;
        /* 40px */
    }

    h2 {
        font-size: 2rem;
        /* 32px */
    }

    h3 {
        font-size: 1.75rem;
        /* 28px */
    }

    h4 {
        font-size: 1.5rem;
        /* 24px */
    }

    h5 {
        font-size: 1.25rem;
        /* 20px */
    }

    h6 {
        font-size: 1.125rem;
        /* 18px */
    }

    p {
        font-size: 18px;
        /* 17px */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
        /* 48px */
    }

    h2 {
        font-size: 2.5rem;
        /* 40px */
    }

    h3 {
        font-size: 2rem;
        /* 32px */
    }

    h4 {
        font-size: 1.75rem;
        /* 28px */
    }

    h5 {
        font-size: 1.5rem;
        /* 24px */
    }

    h6 {
        font-size: 1.5rem;
        /* 20px */
    }

    p {
       font-size: 18px;
        /* 18px */
    }
}

@media (min-width: 1440px) {
    h1 {
        font-size: 3.5rem;
        /* 56px */
    }

    h2 {
        font-size: 3rem;
        /* 48px */
    }

    h3 {
        font-size: 2.5rem;
        /* 40px */
    }

    h4 {
        font-size: 2rem;
        /* 32px */
    }

    h5 {
        font-size: 1.75rem;
        /* 28px */
    }

    h6 {
        font-size: 1.5rem;
        /* 24px */
    }

    p {
        font-size: 18px;
        /* 19px */
    }
}

.hero {
    position: relative;
    /* required for absolute overlay */
    width: 100%;
    height: 100vh;
    color: white;
    
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* ensures content is above the overlay */
}

.hero::before {
    content: "";
    /* required for ::before */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    /* overlay color */
    opacity: 0.6;
    /* adjust darkness */
    z-index: -1;
    /* place behind content */
}

.hero-content {
    width: 100%;
    height: fit-content;
    max-width: 80rem;
}

.hero-content>h1 {
    width: 100%;
    height: fit-content;
    /* max-width: 80rem; */
    margin: auto;
}

.btn {
    width: fit-content;
    height: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary {
    background-color: black;
    color: white;
    border: 2px solid black;
}

.btn-primary:hover {
    background-color: white;
    color: black;
}

.btn-secondary {
    background-color: white;
    color: black;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: black;
    color: white;
}

.cta-box {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.story-section {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.story-content>ul {
    text-decoration: none;
    list-style: none;
}

.story-content>ul>li {
    text-decoration: none;
    list-style: none;
    font-weight: bold;
}


.photo-collage {
    position: relative;
    width: 100%;
    min-width: 40vw;
    min-height: 400px;
    max-width: 500px;
    /* margin: 0 auto; */
    flex-shrink: 0;
}

.photo-collage img {
    position: absolute;
    width: 120px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-collage img:hover {
    z-index: 50 !important;
    /* bring hovered image to top */
    transform: scale(1.08) rotate(6deg) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

@media (min-width:1024px) {
    .story-section {
        width: 100%;
        height: 100%;
        padding: 50px 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .photo-collage img {
        width: 160px;
        height: 220px;
    }
}

.subtitle{
    width: 100%;
    height: fit-content;
    padding: 10px;
    text-align: center;
    background-color: black;
    color: white;
}

.photo-grid {
    flex: 1;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    min-width: 30vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* two columns */
    grid-auto-rows: 200px;
    /* each row = 200px height */
    gap: 10px;
    /* optional spacing */
}

.photo-grid>img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
}

@media (max-width:1023px) {
    .photo-grid{
        display: none;
    }
}


.category-section {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: black;
}

.category-banner {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 0;
}

.category-content {
    width: 100%;
    height: 100%;
    padding: 50px 0;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.category-content>h2 {
    width: 100%;
    height: auto;
    max-width: 50rem;
    margin: 0 auto;
}

.category-content>p {
    width: 100%;
    height: auto;
    max-width: 60rem;
    margin: 0 auto;
}

.category-grid {
    width: auto;
    height: auto;
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tile {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    color: white;
}

.category-tile:hover {
    cursor: pointer;
    transform: translateY(-20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile>img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border: 2px solid white;
}

.category-title {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.portfolio-box {
    width: 300px;
    height: 200px;
    background-color: black;
}

.portfolio-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 40vw;
    min-height: 400px;
    max-width: 500px;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.photo-gallery img {
    width: 150px;
    height: 200px;
    border: 2px solid white;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery>img.photo-lg {
    width: 250px;
    height: 300px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center;
}

.photo-gallery>img.photo-one {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 30%;
}

.photo-gallery>img.photo-two {
    position: absolute;
    z-index: 3;
    left: 30%;
    top: 60%;
}

.photo-gallery>img.photo-three {
    position: absolute;
    z-index: 4;
    left: 60%;
    top: 50%;
}

.photo-gallery img:hover {
    z-index: 50 !important;
    /* bring hovered image to top */
    transform: scale(1.08) rotate(6deg) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.testimonial {
    width: 250px;
    height: 300px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.25);
}

.testimonial::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

.testimonial>p.review {
    width: 100%;
    height: 90%;
    font-size: 14px;
    font-style: italic;
    color: #555555;
    overflow-x: hidden;
    overflow-y: scroll;
    /* Hide scroll bar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial>p.client {
    width: 100%;
    font-size: 1rem;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    color: #555555;
}

p.conclusion {
    width: 100%;
    height: fit-content;
    padding: 20px;
    max-width: 50rem;
    margin: 20px auto;
    background-color: #f8f8f8;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.25);
}

/* Hide scroll bar in large screens */
@media (min-width: 768px) {
    .scrollbar-hidden {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .scrollbar-hidden::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, and Opera */
    }
}

.hero-section {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-section>img{
    width: 100%;
    height: 80vh;
    max-width: 400px;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
    }
}

.faq-section {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.faq-section>h2 {
    margin-bottom: 40px;
}

/* --- Accordion Styles --- */

/* Style the container for each FAQ item */
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
    /* Remove border from the last item */
}

/* The question/summary element */
.faq-item summary {
    display: block;
    /* Ensures the whole row is clickable */
    padding: 15px 0;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    outline: none;
    /* Remove default focus outline */
    list-style: none;
    /* Hide the default arrow/marker */
    position: relative;
    font-size: 16px;
}

/* Re-add a custom arrow/icon for the open/close state */
.faq-item summary::after {
    content: '+';
    /* Plus sign for closed state */
    position: absolute;
    right: 15px;
    font-size: 16px;
    line-height: 1;
    color: #777;
    transition: transform 0.3s ease;
}

/* Rotate the icon when the item is open */
.faq-item[open] summary::after {
    content: '–';
    /* Minus sign for open state */
    transform: rotate(0deg);
    /* No rotation needed for minus sign */
}

/* The answer/details content */
.faq-content {
    padding: 0 15px 15px 0;
    /* Align with the question text */
    line-height: 1.6;
    color: #666;
    font-size: 16px;
    /* Optional: Add a smooth animation/transition for the content */
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section Container */
.stats-section{
    width: 100%;
    height: fit-content;
    margin: 20px 0;
    background-color: black;
    color: white;
}
.stats-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin:0 auto;
    padding: 30px;
    text-align: center;
}

/* Individual Stat Item */
.stat-item {
    flex: 1;
    /* Allows items to grow and shrink */
    width: 150px;
    /* Minimum size before wrapping */
    padding: 20px 15px;
    margin: 10px;
    position: relative;
}

/* Separator Line (Pure CSS) */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e0e0e0;
}

/* Number Display */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    /* Primary accent color */
    margin-bottom: 5px;
    line-height: 1;
}

/* Label Text */
.stat-label {
    font-size: 1rem;
    color:white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Query for smaller screens (remove separators) */
@media (max-width: 600px) {
    .stats-wrapper {
        flex-direction: column;
    }

    .stat-item:not(:last-child)::after {
        content: none;
        /* Hide vertical lines */
    }

    .stat-item {
        border-bottom: 1px solid #e0e0e0;
        /* Add horizontal line */
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}