/* Global reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: #2c2e39;
    overflow-y: auto;
}

/* Mobile header */
.mobile-header {
    display: none;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: #f3e8e7;
    cursor: pointer;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Fullscreen Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2c2e39;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f3e8e7;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.hidden {
    display: none;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-content h1,
.mobile-nav-content p,
.mobile-nav-content h2,
.mobile-nav-content p a,
.mobile-nav-content h2 a {
    margin: 10px 0;
    font-size: 20px;
    color: #f3e8e7;
}

.mobile-navigation p a,
.mobile-navigation h2 a {
    font-size: 20px;
    color: #f3e8e7;
}


/* Peeks grid */
.peeks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}

.peek {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.peek img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Hover effects */
.hover-filler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(216, 18, 91, 0);
    transition: background-color 0.3s ease;
}

.peek:hover .hover-filler {
    background-color: rgba(216, 18, 91, 0.55);
}

.peek-text {
    position: absolute;
    text-align: center;
    color: #f3e8e7;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.peek:hover .peek-text {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
        justify-content: flex-start;
        padding: 10px;
        background-color: #2c2e39;
    }

    .peeks {
        grid-template-columns: 1fr;
    }
}

/*About section*/

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #2c2e39;
    color: #f3e8e7;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    background-color: #2c2e39;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: #f3e8e7;
    cursor: pointer;
}

/* Fullscreen Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2c2e39;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f3e8e7;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.hidden {
    display: none;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-content h1,
.mobile-nav-content p,
.mobile-nav-content h2,
.mobile-nav-content a {
    font-size: 20px;
    margin: 10px 0;
    color: #f3e8e7;
    text-decoration: none;
}

.mobile-nav-content a:hover {
    color: #d8125b;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* About Image */
.about-image img {
    width: 230px;
    height: 230px;
    border-radius: 20%;
    margin: 0 auto;
}

/* Contact Info */
.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #d8125b;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* About Me Section */
.about-me p {
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.6;
}

/* Fiverr Link */
.fiverr-link a {
    color: #d8125b;
    text-decoration: none;
}

.fiverr-link a:hover {
    text-decoration: underline;
}

/* Reviews Image */
.reviews img {
    width: 100%;

    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #2c2e39;
    color: #f3e8e7;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    background-color: #2c2e39;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: #f3e8e7;
    cursor: pointer;
}

/* Fullscreen Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2c2e39;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f3e8e7;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.hidden {
    display: none;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-content h1,
.mobile-nav-content p,
.mobile-nav-content h2,
.mobile-nav-content a {
    margin: 10px 0;
    color: #f3e8e7;
    text-decoration: none;
}

.mobile-nav-content a:hover {
    color: #d8125b;
}

/* Illustrations Grid */
.Illustrations-content {
    text-align: center;
}

.Illustrations-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    padding: 20px;
}

.Illustrations-area img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 80vw;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #2c2e39;
    color: #f3e8e7;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    background-color: #2c2e39;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: #f3e8e7;
    cursor: pointer;
}

/* Mobile Fullscreen Navigation */
.mobile-nav {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 46, 57, 0.9); /* Match website's dark theme */
    color: #f3e8e7; /* Light text for contrast */
    z-index: 100; /* Ensure it overlays other elements */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Heebo', sans-serif; /* Consistent font */
    font-size: 16px;
}

.mobile-nav.active {
    display: flex; /* Show menu when active */
}

.mobile-nav h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d8125b; /* Accent color for emphasis */
}

.mobile-nav p {
    margin: 10px 0;
    font-size: 18px;
}

.mobile-nav a {
    text-decoration: none;
    color: #f3e8e7; /* Light text color */
}

.mobile-nav a:hover {
    color: #d8125b; /* Accent color on hover */
    transition: color 0.3s ease;
}


/* Videos Content */
.videos-content {
    text-align: center;
    padding: 20px;
}

/* General video styling */
.videos-area video {
    width: 90%; /* Default: Make the video 90% of the container width */
    max-width: 400px; /* Constrain the maximum width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Optional shadow for aesthetics */
    margin: 10px auto; /* Center the video and add spacing */
    display: block; /* Ensure the video is centered */
}

/* Adjust video size specifically for smaller screens */
@media (max-width: 768px) {
    .videos-area video {
        width: 80%; /* Reduce the video width to 80% of the screen */
        max-width: none; /* Allow the width to scale down further on smaller devices */
    }
}

@media (max-width: 480px) {
    .videos-area video {
        width: 100%; /* On very small screens, make the video fill the screen width */
    }
}


