/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #343a40; /* Gray Black background */
    color: #f8f9fa; /* Adjust text color for better contrast */
}

/* Navbar */
.navbar {
    padding: 1rem;
    background-color: #343a40 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* Hero Section with Slideshow and Logo */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}



.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-overlay img {
    max-width: 300px;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.logo-overlay img:hover {
    transform: scale(1.05);
}

/* Works Section */
.works-section {
    padding: 60px 0;
    background-color: #212529;
}

.work-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    margin-bottom: 20px;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.work-card iframe {
    width: 100%;
    height: 330px;
    border-bottom: 1px solid #ddd;
}

.work-card h3 {
    margin-top: 10px;
    color: #343a40;
    font-size: 1.5rem;
    padding: 5px;
}

.work-card p {
    font-size: 1rem;
    color: #6c757d;
    padding: 0 5px 2px;
}

/* Social Section */
.social-section {
    padding: 0; /* Remove padding from the section */
    background-color: #212529; /* Dark background outside the main container */
    margin-bottom: 40px;
    box-shadow: 0px 0px 0px 100px #212529; /* Ensures no white background underneath */
}

.social-container {
    max-width: 600px; /* Reduce max-width to be less than the video above */
    margin: 0 auto; /* Center the container */
    padding: 0; /* Remove padding */
    border-color: #ffffff;
    border-radius: 8px; /* Border radius for smooth edges */
}

.social-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align content to the sides */
    padding: 50px 40px; /* Padding inside the item */
    border-radius: 8px; /* Border radius for smooth edges */
    background-color: #202020; /* Background color */
    transition: background-color 0.3s ease; /* Smooth transition */
    position: relative;
    border: 2.5px solid #282828; /* Add a very thin border */
}

.social-link-item:hover {
    background-color: #333333; /* Slightly brighter on hover */
}

.social-link-item:first-child::before {
    content: "";
    position: absolute;
    top: 0px; /* Position just inside the div */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%) rotate(180deg); /* Rotate the arrow 180 degrees */
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #282828; /* Same color as the div background */
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between left content and right icon */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    width: 100%; /* Make the link take the full width of the div */
    height: 100%; /* Make the link take the full height of the div */
}

.social-link-item p {
    margin: 0;
    font-size: 1rem; /* Larger font size */
    font-weight: bold;
    color: #ffffff; /* White text */
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevent text wrapping */
}

.social-link-item p img.action-icon {
    width: 30px; /* Size for the action icon */
    height: 30px; /* Size for the action icon */
    margin-right: 10px; /* Space between icon and text */
    filter: invert(100%); /* Convert the icon color to white */
}

.social-link-item .social-icon {
    width: 70px; /* Size of the social media icon */
    height: 70px; /* Size of the social media icon */
    border-radius: 38%; /* Circular images */
    background-color: transparent; /* No background behind the icon */
    border: none; /* Remove border */
}

.social-link-item img.social-icon {
    order: 2; /* Place the social media icon on the right */
    margin-left: 20px; /* Space between the text and the social media icon */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-link-item {
        padding: 10px 20px; /* Adjust padding on smaller screens */
    }

    .social-link-item p {
        font-size: 0.9rem; /* Adjust font size on smaller screens */
    }

    .social-link-item p img.action-icon {
        width: 40px; /* Adjust icon size on smaller screens */
        height: 40px;
    }
    .img.action-icon{
        width: 20px; /* Further adjust icon size */
        height: 20px;
    }
}

@media (max-width: 480px) {
    .social-link-item {
        padding: 35px 35px; /* Further adjust padding on smaller screens */
    }

    .social-link-item p {
        font-size: 0.8rem; /* Further adjust font size */
    }

    .social-link-item p img.action-icon{
        width: 20px; /* Further adjust icon size */
        height: 20px;
    }
    .social-link-item .social-icon {
        width: 40px; /* Further adjust icon size */
        height: 40px;
    }
}

.social-link:hover,
.social-link:focus,
.social-link:active {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color */
}



/* Footer */
footer {
    background-color: #212529;
    color: white;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
    }

    .social-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
    }

    .logo-overlay img {
        max-width: 200px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
}


/* Blur the Swiper images */
.swiper-slide img {
    filter: blur(5.8px); /* Apply a blur effect */
    width: 100%; /* Ensure the images take up full width */
    height: 100%; /* Ensure the images take up full height */
    object-fit: cover; /* Cover the entire slide area */
    
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .swiper-slide img {
        height: 100vh; /* Make the image height fill the entire viewport height */
        object-fit: cover; /* Ensure the image covers the slide area */
        object-position: 85% 100%; /* Focus on the right bottom quarter */

    }
}



/* Overlay content */
.swiper-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3; /* Ensure it appears above the slides */
}

@font-face {
    font-family: 'CarltineRegular';
    src: url(../fonts/CarltineRegular-K7z5l.ttf) format('truetype'); /* Adjust path as needed */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CarltineLight';
    src: url(../fonts/CarltineLight-rgjVL.ttf) format('truetype'); /* Adjust path as needed */
    font-weight: normal;
    font-style: normal;
}

/* Main title (ROEE COHEN) */
.main-title {
    font-family: 'CarltineRegular', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    text-shadow: 12px 12px 30px rgba(0, 0, 0, 0.9), 4px 4px 15px rgba(255, 255, 255, 0.2), 6px 6px 15px rgba(0, 0, 0, 0.7);
    color: #f8f9fa;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Subtitle (Music Producer) */
.subtitle {
    font-family: 'CarltineLight', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-top: 1px;
    margin-bottom: 50px;
    text-shadow: 8px 8px 25px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(255, 255, 255, 0.2), 4px 4px 10px rgba(0, 0, 0, 0.7);
    color: #f8f9fa;
    letter-spacing: 0.5px;
}

/* Hebrew Text */
.hebrew-text {
    font-family: 'Assistant', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d8d8d8;
    margin-top: 5px;
    text-shadow: 8px 8px 25px rgba(16, 16, 16, 0.9), 3px 3px 10px rgba(255, 255, 255, 0.2), 4px 4px 10px rgba(26, 25, 25, 0.7);
    letter-spacing: 0.5px;
    white-space: nowrap;
}



/* Swiper button customization */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
}

/* Adjust title sizes for smaller screens */
@media (max-width: 768px) {
    .main-title {
        font-size: 4.5rem; /* Adjust for tablets */
    }

    .subtitle {
        font-size: 3rem; /* Adjust for tablets */
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 3.5rem; /* Adjust for mobile */
    }

    .subtitle {
        font-size: 2rem; /* Adjust for mobile */
    }
}
/* Scroll Down Button */
.scroll-down-button {
    position: absolute;
    bottom: 20px; /* Adjust this value as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 2rem; /* Size of the icon */
    color: #ffffff;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-down-button:hover {
    opacity: 1;
}

.scroll-down-button i {
    animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    background-color: #f8f9fa; /* Light background color */
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 30px;
}

.contact-section .form-control {
    border-radius: 0.25rem;
}

.contact-section .btn {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.contact-section .btn:hover {
    background-color: #0056b3;
}

/* Default to show web slideshow and hide mobile slideshow */
.swiper-container-web {
    display: block;
}


/* Fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* Optional: Add a slight upward movement */
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0); /* Return to original position */
}

/* Fade-in effect with delays for sequential appearance */
.fade-in-first {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}

.fade-in-second {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
    transition-delay: 0.8s; /* Delay the appearance of the second heading */
}

.fade-in-third {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
    transition-delay: 1.6s; /* Delay the appearance of the third heading */
}

.show {
    opacity: 1;
    transform: translateY(0);
}



/* For web version (larger screens) */
@media (min-width: 769px) {
    .works-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center the items horizontally */
    }

    .works-section .col-md-4 {
        flex: 0 0 65%; /* Two columns per row with spacing */
        max-width: 65%; /* Ensure they don't exceed the row width */
        margin-bottom: 20px;
    }
}

/* For smaller screens, fallback to one video per row */
@media (max-width: 768px) {
    .works-section .row {
        display: block; /* Stack videos in one column */
    }

    .works-section .col-md-4 {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%; /* Ensure full width */
        margin-bottom: 20px; /* Space between rows */
    }
}
.work-card h3, .work-card p {
    direction: rtl;
    text-align: right;
}


/* Responsive Adjustment for Mobile */
@media (max-width: 768px) {
    .hebrew-text {
        font-size: 1.5rem; /* Slightly smaller for tablets */
    }
}

@media (max-width: 480px) {
    .hebrew-text {
        font-size: 1rem; /* Smaller font size for mobile screens */
    }
}

/* Comments Section Styling */
.comments-section {
    padding: 50px 20px;
    background-color: #212529;
}

.comments-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.comment-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: right; /* Align text to the right for RTL */
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 15px; /* Add padding between comment cards */
    border-left: 4px solid #b4b2b2; /* Add a colored border to the left side */
    position: relative;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.comment-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    z-index: -1;
    background: linear-gradient(45deg, #6a11cb 0%, #272142 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment-card:hover::before {
    opacity: 0.2;
}

/* Commenter Name */
.commenter-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; /* Adjusted font size for the name */
    color: #676666;
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px; /* Space between the name and the stars */
}

/* Comment Text */
.comment-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #343a40;
    margin-bottom: 15px;
}

/* Stars Section */
.stars {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.3rem;
    margin-bottom: 15px; /* Add space between stars and name */
}

.slick-slide {
    padding: 10px;
}

.slick-prev:before, .slick-next:before {
    color: #ffffff;
    font-size: 30px;
}

@media (max-width: 768px) {
    .comment-card {
        padding: 20px;
    }

    .comment-text {
        font-size: 1.1rem; /* Adjust font size on smaller screens */
        margin-bottom: 10px;
    }

    .commenter-name {
        font-size: 1rem; /* Smaller font size for the name on mobile */
    }

    .stars {
        font-size: 1.2rem;
    }
}

/* Change the color of the dots */
.slick-dots li button:before {
    content: "•"; /* Use dot character */
    font-family: "Arial", sans-serif; /* Ensure compatibility */
    color: white !important; /* Force the color to be white */
    opacity: 0.75; /* Slightly transparent dots */
    font-size: 12px; /* Adjust the size of the dots */
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

/* Change the color of the active dot */
.slick-dots li.slick-active button:before {
    opacity: 1; /* Make the active dot fully opaque */
    color: white !important; /* Ensure the active dot is also white */
}
/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; /* Adjust the distance from the bottom */
    right: 30px; /* Adjust the distance from the right */
    z-index: 1000; /* Ensure it appears above everything */
    width: 100px; /* Default size for larger screens */
    height: 100px; /* Default size for larger screens */
    border-radius: 50%;
    background-color: #25d366; /* WhatsApp green background */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 3s infinite;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1); /* Scale up the icon slightly on hover */
}

.floating-whatsapp img.whatsapp-icon {
    width: 90%; /* Increase the size of the icon inside the container */
    height: 90%; /* Ensure the icon takes up more space within the circle */
    border-radius: 50%;

    display: block;
    margin: 0 auto; /* Center the icon */
    object-fit: contain; /* Ensure the icon scales properly inside the container */
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2)); /* Adds a shadow to make the icon look cute */
}

/* Animation for bouncing effect */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Media query for smaller screens (tablets and below) */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 80px; /* Decrease the size for tablets and smaller screens */
        height: 80px;
    }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px; /* Further decrease the size for mobile phones */
        height: 50px;
    }

    .floating-whatsapp img.whatsapp-icon {
        width: 60%; /* Adjust the icon size for mobile */
        height: 60%;
    }
}
