body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    background-color: #1c1c1c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #e0e0e0;
}

section {
    padding: 40px 20px;
}

h2 {
    color: #f44336;
    margin-bottom: 20px;
    text-align: center;
}

.intro-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 0px;
}

.intro-img {
    max-width: 400px;
    width: 100%;
}

.intro-text {
    max-width: 600px;
    text-align: left;
}

.intro-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: left;
    color: #f44336;
}

.intro-text p {
    color: #b0b0b0;
}

.instagram-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1em;
    color: #fff;
    background-color: #f44336;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.instagram-button:hover {
    background-color: #d32f2f;
}

.portfolio h2 {
    font-size: 2em;
    color: #f44336;
    margin-bottom: 20px;
    text-align: center;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-item {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.portfolio-item h3 {
    font-size: 1.2em;
    color: #f44336;
    margin-bottom: 10px;
}

.portfolio-img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    margin: 0 auto;
}

.image-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.image-container img {
    width: 30%; 
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }

    .image-container img {
        width: 100%;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        padding: 10px;
        font-size: 0.9em;
    }
    .intro-img {
        max-width: 100%;
    }
}

.insights {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.insights h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #f44336;
    text-align: center;
}

.insight {
    background-color: #1c1c1c;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.insight h3 {
    margin-bottom: 10px;
    color: #f44336;
    font-size: 1.5em;
}

.insight p {
    font-size: 1.1em;
    color: #b0b0b0;
}

footer {
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1080px;
    margin: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 33.33%; /* 3 images per slide */
    height: 400px;  /* Set fixed visible height */
    object-fit: cover; /* Keeps image clean and cropped nicely */
    padding: 10px;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background-color: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
}

.prev { left: 0; }
.next { right: 0; }

.small-img {
    max-width: 27%; /* Adjust this percentage as needed */
    height: auto;
    margin: 0 auto;
    display: block;
}


@media (max-width: 768px) {
    .carousel-track img {
        width: 50%; /* 2 images per row on tablet */
    }
}

@media (max-width: 480px) {
    .carousel-track img {
        width: 100%; /* 1 image per row on phone */
    }
}
