/* Dreamy Pastels Color Palette */
/* Light Lavender: #E0BBE4 */
/* Soft Peach: #957DAD */
/* Muted Teal: #D291BC */
/* Pale Yellow: #FFC72C */
/* Creamy White: #F0F0F0 */

/* General Body & Container */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F0F0F0; /* Creamy White background for a soft base */
    color: #957DAD; /* Soft Peach for primary text */
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Smoother font rendering */
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #957DAD; /* Soft Peach for headings */
    margin-bottom: 20px;
    letter-spacing: 0.5px; /* Added letter spacing for sleekness */
}

/* Main hero title in video section */
.main-hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 5em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: writing-effect 3s forwards;
    position: relative;
    color: #F0F0F0;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    line-height: 1;
}

@keyframes writing-effect {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.section-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #957DAD; /* Soft Peach for section titles */
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #D291BC; /* Muted Teal underline */
    border-radius: 2px; /* Softer edges */
}

/* Optional SVG divider for sections like Testimonials */
.section-divider-svg {
    display: block;
    width: 100px; /* Adjust size as needed */
    height: 10px; /* Adjust height as needed */
    margin: -20px auto 40px auto; /* Adjust margin to position relative to title */
    overflow: visible; /* Ensure path is not clipped */
}
.section-divider-svg path {
    stroke-linecap: round;
}


/* General Fade In Animation for sections */
.fade-in-on-load {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below final position */
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Auth Buttons (Removed from Performances Section - Keep for general use if needed elsewhere) */
.auth-buttons {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.auth-buttons input[type="email"],
.auth-buttons input[type="password"] {
    padding: 12px 18px;
    border: 1px solid #D291BC;
    background-color: #F0F0F0;
    color: #957DAD;
    border-radius: 8px;
    font-size: 1em;
    width: 250px;
    max-width: 100%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-buttons input:focus {
    outline: none;
    border-color: #FFC72C;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08), 0 0 0 3px rgba(255, 199, 44, 0.2);
}

.auth-buttons input::placeholder {
    color: #B595A9;
}


.auth-buttons .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #F0F0F0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.auth-buttons .btn:first-of-type {
    background-color: #957DAD;
}

.auth-buttons .btn:first-of-type:hover {
    background-color: #7d658c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.auth-buttons .btn:nth-of-type(2) {
    background-color: #D291BC;
}

.auth-buttons .btn:nth-of-type(2):hover {
    background-color: #b87a9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.logout-btn {
    background-color: #E0BBE4;
    color: #957DAD;
    margin-left: 20px;
}

.logout-btn:hover {
    background-color: #c9a7ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Hero Section with Video */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #F0F0F0;
    text-align: center;
    background-color: #957DAD; /* Fallback background if video fails */
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1; /* Ensure video is fully visible */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(149, 125, 173, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    background: rgba(224, 187, 228, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    color: #F0F0F0;
}

.btn.primary-btn {
    background-color: #D291BC;
    color: #F0F0F0;
    padding: 15px 40px;
    font-size: 1.3em;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn.primary-btn:hover {
    background-color: #b87a9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #E0BBE4;
    color: #957DAD;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex-shrink: 0;
    max-width: 350px;
    width: 100%;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-text {
    flex-grow: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.1em;
    color: #957DAD;
    margin: 0;
}

/* Optional: Styling for the horizontal break */
.about-section-break {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #D291BC, rgba(0, 0, 0, 0));
    margin: 60px auto 0;
    width: 50%;
    max-width: 400px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #F0F0F0; /* Creamy White background */
    color: #957DAD; /* Soft Peach for text */
}

.pricing-section .section-title {
    color: #957DAD; /* Soft Peach for title */
}

.pricing-section .section-title::after {
    background-color: #D291BC; /* Muted Teal underline */
}

.pricing-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 40px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Space between cards */
    margin-top: 50px;
}

.pricing-card {
    background-color: #E0BBE4; /* Light Lavender background */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 380px; /* Max width for each card */
    overflow: hidden; /* For collapsing details */
    transition: all 0.3s ease;
    cursor: pointer; /* Indicates interactivity */
    text-align: left;
    display: flex;
    flex-direction: column; /* Stack header and details */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-header {
    background-color: #957DAD; /* Soft Peach header */
    padding: 25px;
    color: #F0F0F0; /* Creamy White text */
    display: flex;
    justify-content: space-between; /* Space out title and price */
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    position: relative; /* Essential for absolute positioning of ::after */
    padding-right: 50px; /* Increased padding on the right to make space for the arrow */
}

.pricing-header h3 {
    margin: 0;
    color: #F0F0F0;
    font-family: 'Montserrat', sans-serif; /* Keep consistent with body text for less formal feel */
    font-size: 1.3em;
    flex-grow: 1; /* Allow title to take space */
    text-align: left; /* Align text to left */
    padding-right: 10px; /* Small gap between title and price */
}

.pricing-header .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0; /* Prevent price from shrinking */
}

.pricing-header::after {
    content: '▼'; /* Down arrow */
    font-size: 1.2em;
    transition: transform 0.3s ease, content 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.pricing-card.active .pricing-header::after {
    content: '▲'; /* Up arrow when active */
    transform: translateY(-50%) rotate(0deg);
}


.pricing-details {
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smooth transition */
    padding: 0 25px; /* Initial padding */
    color: #957DAD; /* Soft Peach for details text */
}

.pricing-card.active .pricing-details {
    padding: 25px; /* Expanded padding */
}

.pricing-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
}

.pricing-details ul li:last-child {
    margin-bottom: 0;
}

.pricing-details .bullet-icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #D291BC; /* Muted Teal for bullet icon */
    line-height: 1;
    flex-shrink: 0;
}

.pricing-details p {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 0.95em;
    text-align: left;
}

.pricing-details .book-now-btn {
    width: auto;
    margin: 15px 0 0 auto; /* Align to bottom right */
    display: block; /* Make it take full width of its content */
}

.booking-info {
    background-color: #957DAD; /* Soft Peach background */
    color: #F0F0F0; /* Creamy White text */
    padding: 40px;
    border-radius: 15px;
    margin-top: 80px; /* Space from pricing cards */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-info p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.booking-info p:last-child {
    margin-bottom: 0;
}

/* Video Gallery Section (Default: Grid for Desktop) */
.video-gallery-section {
    padding: 100px 0;
    background-color: #F0F0F0;
}

.video-gallery {
    display: grid; /* Default grid layout for desktop */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    /* Removed position: relative as controls are external */
}

.portfolio-slider-track {
    display: contents; /* Allows children to participate in grid layout on desktop */
    transition: transform 0.5s ease-in-out; /* For smooth sliding */
}

.video-container { /* This is the individual item in the grid/slide */
    background-color: #E0BBE4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-title {
    padding: 18px 15px;
    font-size: 1.1em;
    font-weight: bold;
    background-color: #D291BC;
    color: #F0F0F0;
    text-align: left;
}

/* Portfolio Slider Controls (Hidden by default on desktop) */
.portfolio-slider-controls {
    display: none; /* Hidden by default on desktop, shown by media query */
}


/* Removed Performances Section styles (replaced with Social Links) */
.performances-section {
    display: none; /* Hide the entire section if no longer needed */
}

/* Social Links Section Styles */
.social-links-section {
    padding: 100px 0;
    background-color: #E0BBE4; /* Light Lavender background */
    color: #957DAD; /* Soft Peach text */
}

.social-links-section .section-title {
    color: #957DAD; /* Soft Peach for title */
}

.social-links-section .section-title::after {
    background-color: #D291BC; /* Muted Teal underline */
}

.social-links-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 40px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between icons */
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.social-icons-container a {
    display: inline-block; /* Allows transformation */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border-radius: 50%; /* Make it circular if PNGs are square */
    overflow: hidden; /* Ensures shadow follows shape if circular */
}

.social-icons-container a:hover {
    transform: translateY(-5px) scale(1.05); /* Lift and slightly enlarge on hover */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* More pronounced shadow on hover */
}

.social-icon-img {
    width: 60px; /* Size of the image icon */
    height: 60px;
    display: block; /* Remove extra space below image if any */
    object-fit: cover; /* Ensures image fills the circle without distortion */
}


/* Testimonials Section */
.testimonials-section {
    background-color: #F0F0F0;
    padding: 100px 0;
    color: #957DAD;
    overflow: hidden; /* Hide overflowing slides */
    position: relative; /* For slider controls positioning */
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide parts of track that are off-screen */
}

.testimonial-slider .slider-track { /* Specific for testimonial slider */
    display: flex; /* Arrange slides horizontally */
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
}

.testimonial-slide {
    flex: 0 0 100%; /* Each slide takes full width of its container */
    max-width: 600px; /* Max width for individual slide content */
    margin: 0 auto; /* Center individual slide content */
    padding: 0 20px; /* Add some padding on sides for smaller screens */
    box-sizing: border-box; /* Include padding in width */
}

.testimonial-item {
    background-color: #E0BBE4; /* Light Lavender background */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    color: #957DAD;
    line-height: 1.6;
    height: 100%; /* Ensure all items take full height of slide */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically in item */
}

.testimonial-item p {
    margin-bottom: 25px;
}

.testimonial-item span {
    display: block;
    font-weight: bold;
    color: #D291BC;
    margin-top: 15px;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-controls { /* General slider controls styling */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; /* Space from slider */
    gap: 20px;
}

.slider-nav-btn {
    background-color: #957DAD; /* Soft Peach */
    color: #F0F0F0; /* Creamy White */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-nav-btn:hover {
    background-color: #D291BC; /* Muted Teal on hover */
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #D291BC; /* Muted Teal */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0.6;
}

.dot.active {
    background-color: #957DAD; /* Soft Peach when active */
    transform: scale(1.2);
    opacity: 1;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #957DAD;
    color: #F0F0F0;
}

.contact-section .section-title {
    color: #F0F0F0;
}

.contact-section .section-title::after {
    background-color: #D291BC;
}

.contact-form {
    max-width: 650px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 1px solid #D291BC;
    border-radius: 8px;
    background-color: #E0BBE4;
    color: #957DAD;
    font-size: 1.05em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFC72C;
    box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #B595A9;
}

.contact-form button {
    align-self: center;
    margin-top: 30px;
    background-color: #FFC72C;
    color: #957DAD;
    padding: 15px 50px;
    font-size: 1.4em;
    letter-spacing: 1.2px;
}

.contact-form button:hover {
    background-color: #e0ac1f;
}


/* Musical Notes Animation (Hero Section) */
.musical-note {
    position: absolute;
    font-size: 1.5em;
    opacity: 0;
    animation: explode 1s forwards;
    pointer-events: none;
    color: #FFC72C; /* Pale Yellow notes (from Dreamy Pastels) */
}

/* Musical Notes Animation for About Section */
.musical-note-about {
    position: absolute;
    font-size: 1.8em;
    opacity: 0;
    pointer-events: none;
    color: #D291BC; /* Muted Teal notes, to match the section's palette */
    transform: translate(-50%, -50%); /* Center the note on its position */
}

@keyframes shoot-notes {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.8); /* Use custom properties for direction */
    }
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Modal should be on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(149, 125, 173, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #E0BBE4;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #957DAD;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #957DAD;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-button {
    color: #957DAD;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #D291BC;
}

/* Footer Styling */
.main-footer {
    background-color: #957DAD;
    padding: 40px 0;
    margin-top: 60px;
    color: #F0F0F0;
    font-size: 0.95em;
    border-top: 1px solid #D291BC;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* Back to Top Button */
.back-to-top-btn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 30px; /* 30px from the bottom */
    right: 30px; /* 30px from the right */
    background-color: #D291BC; /* Muted Teal background */
    color: #F0F0F0; /* Creamy White arrow */
    border: none;
    border-radius: 50%; /* Circular shape */
    width: 50px; /* Size */
    height: 50px;
    font-size: 2em; /* Arrow size */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Subtle shadow */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; /* Added opacity transition */
    z-index: 999; /* Ensure it's above other content */
    opacity: 0; /* Start invisible for fade-in */
    transform: translateY(20px); /* Start slightly below for slide-up */
    pointer-events: none; /* Disable interaction when invisible */
}

.back-to-top-btn.show {
    display: flex; /* Show the button */
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide up */
    pointer-events: auto; /* Enable interaction */
    justify-content: center; /* Center arrow */
    align-items: center; /* Center arrow */
}

.back-to-top-btn:hover {
    background-color: #957DAD; /* Soft Peach on hover */
    transform: translateY(-2px) scale(1.05); /* Slight lift and scale */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .hero-content h1.main-hero-title {
        font-size: 4.5em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .btn.primary-btn {
        font-size: 1.2em;
        padding: 12px 35px;
    }
    .section-title {
        font-size: 2.4em;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-image-wrapper {
        max-width: 300px;
    }
    .about-text {
        text-align: center;
        font-size: 1em;
    }
    .about-section-break {
        width: 70%;
    }
    .pricing-card {
        max-width: 300px; /* Adjust card size for tablets */
    }
    .pricing-header h3 {
        font-size: 1.1em;
    }
    .pricing-header .price {
        font-size: 1.3em;
    }
    /* Adjusted for new PNG icons */
    .social-icon-img {
        width: 50px; /* Adjust image size for smaller screens */
        height: 50px;
    }
    .social-icons-container {
        gap: 30px; /* Adjust gap for smaller screens */
    }
    /* Testimonial slider adjustments */
    .testimonial-slide {
        max-width: 100%; /* Allow full width on smaller screens */
        padding: 0 15px; /* Reduce padding for more content space */
    }
    .testimonial-item {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .hero-content h1.main-hero-title {
        font-size: 3.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .btn.primary-btn {
        font-size: 1.1em;
        padding: 10px 30px;
    }
    .section-title {
        font-size: 2em;
    }
    .about-image-wrapper {
        max-width: 250px;
    }
    .about-section-break {
        width: 80%;
    }
    .pricing-card {
        max-width: 100%; /* Full width on smaller mobiles */
    }
    .pricing-header {
        padding: 20px 40px 20px 20px;
    }
    .pricing-header h3 {
        font-size: 1.1em;
    }
    .pricing-header .price {
        font-size: 1.4em;
    }
    .pricing-header::after {
        right: 15px;
        font-size: 1em;
    }
    .social-icon-img {
        width: 45px; /* Adjust image size for mobile */
        height: 45px;
    }
    .social-icons-container {
        gap: 25px; /* Adjust gap for mobile */
    }
    /* Portfolio Gallery becomes a slider on mobile */
    .video-gallery {
        display: flex; /* Change to flex for slider behavior */
        overflow: hidden; /* Hide overflowing slides */
        gap: 0; /* Remove gap between slides when in slider mode */
    }

    .portfolio-slider-track {
        display: flex;
        width: 100%; /* Important for horizontal arrangement */
        flex-shrink: 0; /* Prevent shrinking */
        transition: transform 0.5s ease-in-out; /* Smooth transition for JS sliding */
    }

    .portfolio-slide { /* Each video container as a slide */
        flex: 0 0 100%; /* Each slide takes 100% width of the visible area */
        max-width: none; /* Override desktop max-width */
        box-sizing: border-box; /* Include padding in width */
        padding: 0 10px; /* Add some padding on sides for separation */
    }

    /* Portfolio Slider Controls - Now using generic .slider-controls styling */
    .portfolio-slider-controls {
        display: flex; /* Show controls on mobile */
    }

    .video-title {
        padding: 18px 15px;
        font-size: 1.1em;
        font-weight: bold;
        background-color: #D291BC;
        color: #F0F0F0;
        text-align: left;
    }
    .testimonial-item {
        font-size: 1em;
    }
    .contact-form {
        gap: 20px;
    }
    .contact-form button {
        font-size: 1.2em;
        padding: 12px 40px;
    }
    .main-footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1.main-hero-title {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 0.9em;
    }
    .btn.primary-btn {
        font-size: 1em;
        padding: 10px 25px;
    }
    .section-title {
        font-size: 1.8em;
    }
    .about-image-wrapper {
        max-width: 200px;
    }
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 40px 15px 15px;
    }
    .pricing-header h3 {
        font-size: 1em;
    }
    .pricing-header .price {
        font-size: 1.2em;
    }
    .pricing-header::after {
        right: 10px;
        font-size: 0.9em;
    }
    .social-icon-img {
        width: 40px; /* Smallest image size */
        height: 40px;
    }
    .social-icons-container {
        gap: 20px; /* Smallest gap */
    }
    .video-title {
        font-size: 1em;
        padding: 15px 10px;
    }
    .testimonial-item {
        padding: 25px 10px; /* Further reduce padding on smallest screens */
        font-size: 0.9em;
    }
    .contact-form input, .contact-form textarea {
        font-size: 1em;
        padding: 12px 15px;
    }
}