@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E14503;
    --secondary-color: #1B1B1B;
    --light-bg: #ffff;
    --dark-text: #1a1a1a;
    --light-text: #666;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;

}

.navbar-brand {
    margin-bottom: 5px;
}

.nav-link {
    font-weight: 400;
    color: var(--secondary-color) !important;
    margin-left: 1.8rem;
    transition: color 0.3s;
    text-transform: uppercase;
    margin: 0 13px;
}

.navbar-nav .btn-primary {
    margin-left: 90px;
    font-weight: 400;

}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border: none !important;
    padding: 0.6rem 2.8rem !important;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d46f1a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../image/edit-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background: radial-gradient(circle at 30% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2rem, 9vw, 8.5rem);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: 17px;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 110px;
}

.hero .subtitle {
    font-size: clamp(1rem, 8vw, 3.2rem);
    font-family: "Playfair Display", serif;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;

}

.hero p {
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
}

.line {
    height: 2px;
    width: 218px;
    background: linear-gradient(90deg, rgb(255 255 255 / 50%) 0%, rgba(255, 255, 255, 1) 50%, rgb(255 255 255 / 64%) 100%);
    margin: 0 auto;
    border-radius: 100%;
    box-shadow: 0px 0px 1px 0px #101010;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== INTRODUCTION SECTION ========== */
.intro-section {
    background: #FFEDE6;
    position: relative;
    overflow: hidden;
}

.pt-image {
    display: flex;
    justify-content: end;
}

.creative {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
}


.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    padding-left: 5rem;
}

.intro-label::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.intro-text h2 {
    font-size: 2.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-family: "Playfair Display", serif;
}

.intro-text .line {
    height: 2px;
    width: 140px;
    background: linear-gradient(90deg, #ebdcd6 0%, #E14503 50%, #ebdcd6 100%);
    box-shadow: none;
    border: none;
    margin: 0 0;
    border-radius: 100%;
    margin-bottom: 25px;
}

.intro-text h2 .highlight-text {
    color: var(--primary-color);
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-quote {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 2rem 0;
    line-height: 1.6;
}

.intro-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mandala-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 450px;
    height: 450px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Cdefs%3E%3Cstyle%3E.mandala{fill:none;stroke:%23e67e22;stroke-width:0.5;opacity:0.1;}%3C/style%3E%3C/defs%3E%3Ccircle cx="100" cy="100" r="90" class="mandala"/%3E%3Ccircle cx="100" cy="100" r="75" class="mandala"/%3E%3Ccircle cx="100" cy="100" r="60" class="mandala"/%3E%3Ccircle cx="100" cy="100" r="45" class="mandala"/%3E%3Ccircle cx="100" cy="100" r="30" class="mandala"/%3E%3Cpath d="M100,10 L120,50 L160,40 L135,70 L165,100 L135,130 L160,160 L120,150 L100,190 L80,150 L40,160 L65,130 L35,100 L65,70 L40,40 L80,50 Z" class="mandala"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    display: block;
}

@media (max-width: 768px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .intro-label::before {
        width: 20px;
    }

    .mandala-bg {
        display: none;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text .text-primary {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.quote-highlight {
    background: var(--light-bg);
    padding: 1.5rem;
    border-left: 5px solid var(--primary-color);
    margin: 2rem 0;
    border-radius: 5px;
    font-style: italic;
    color: var(--secondary-color);
}

/* ========== SIGNATURE CONCEPTS ========== */
.concepts-section {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
}

.concepts-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../image/creative2.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
    width: 400px;
}

.concepts-section h2 {
    text-align: center;
    font-size: 2.9rem;
    color: var(--secondary-color);
    letter-spacing: 0px;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    font-weight: 500;
}

.concepts-section p {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 4rem;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: rgba(110, 106, 104, 0.18);
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--dark-text), #101010);
    z-index: 0;
    transition: height 0.35s ease;
}

.timeline-item {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item.active .timeline-dot {
    background: var(--dark-text);
    box-shadow: 0 0 0 10px rgba(94, 92, 91, 0.12);
    border-color: #fff;
}

.content h3 {
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: left;

}

.content p {
    color: var(--secondary-color);
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 400;
    max-width: 300px;
    margin-bottom: 25px !important;
    letter-spacing: 0.7px;
    line-height: 23px;
}

.content button {
    transform: translateY(-2px);
    font-weight: 400;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {

    .timeline::before,
    .timeline-progress {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 4rem;
        position: relative;
    }

    .timeline-dot {
        margin: 0;
    }


    .timeline-item .btn-primary {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }

    .timeline-item .content h3 {
        font-size: 1.2rem;
    }
}



.timeline-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--light-text);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.timeline-item .image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.timeline-progress {
    transition: height 0.15s linear;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 5rem 0;
    background-image: url(../image/testimonial-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
    color: white;
}

.testimonials-section h2 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 4rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

.testimonials-section p {
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.testimonials-section .sub-heading {
    margin-bottom: 2rem;
    color: var(--light-bg);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.testimonial-card {
    background: #C0B9B4;
    padding: 2rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    font-style: italic;

}

.testimonial-info p {
    margin: 0;
    font-size: 0.65rem;
    color: var(--dark-text);
    font-style: italic;


}

.testimonial-text {
    line-height: 1.8;
}

.star-rating {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonials-section .swiper-pagination-bullet {
    background-color: var(--light-bg);
}

.testimonials-section .swiper-pagination-bullet-active {
    background-color: var(--light-bg);
}

.testimonials-section .swiper-pagination {
    top: unset !important;
    bottom: -5px !important;
}

.testimonials-section .swiper-wrapper {
    padding-bottom: 25px;
    padding-top: 10px;
}



/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
    padding: 5rem 0;
    background: white;
}

.instagram-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 500px;
    width: 300px;
}

.insta-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insta-item:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 126, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2rem;
    color: white;
}

/* ========== MEDIA SECTION ========== */
.media-section {
    padding: 4rem 0;
    background: #FFEDE6;
}

.media-section .sub-heading {
    text-align: center;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.media-section .sub-heading span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--primary-color);
    margin: 0 10px;
}

.media-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.media-item {
    background: transparent;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-item:hover {
    transform: translateY(-12px);
}

.media-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-item:hover .media-image img {
    transform: scale(1.05);
}

.media-tag {
    position: absolute;
    top: -22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    z-index: 2;
    text-align: center;
    font-style: italic;

}

.content-media {
    background: white;
    padding: 1.5rem;
    margin: 0 auto;
    margin-top: -55px;
    position: relative;
    z-index: 1;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-media h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
}

.content-media p {
    color: var(--dark-text);
    font-size: 13px;
    letter-spacing: 0.25px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 992px) {
    .content-media {
        margin-top: -45px;
    }
}

@media (max-width: 768px) {
    .media-section h2 {
        font-size: 2.4rem;
    }

    .media-image {
        height: 220px;
    }

    .content-media {
        padding: 1.5rem;
        margin-top: -40px;
    }
}

/* ========== YOUTUBE SECTION ========== */
.youtube-section {
    padding: 4rem 0 !important;
    background: white;
}

.youtube-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.youtube-section .subheading {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;

}

.youtube-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.main-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.main-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-list h4 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 0;
}

.video-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--light-bg);
    cursor: pointer;
    transition: all 0.3s;
}

.video-item:hover {
    background: rgba(230, 126, 34, 0.1);
    transform: translateX(5px);
}

.video-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-title p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 4rem 0;
    background-color: #FFEDE6;
}

.newsletter-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.newsletter-section p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 3rem;
    max-width: 700px;

}

.newsletter-form {
    max-width: 1400px;
    margin: 0 auto;

}

.newsletter-form input {
    padding: 0.9rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 99px;
    border: none;
    width: 100%;
    margin: 10px 0;
}

.modal-body .newsletter-form input {
    border: 1px solid #dee2e6;
    border-radius: 10px;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    outline: none;
    border-color: #d46f1a;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.youtube-section {
    padding: 0px 20px;
    text-align: center;
}

.subheading {
    color: #666;
    margin-bottom: 30px;
}


.main-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-item {
    display: flex;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.video-item img {
    width: 120px;
    height: 80px;
    border-radius: 6px;
}

.video-item:hover {
    background: #f5f5f5;
}

.video-item.active {
    background: #eee;
}

/* ========== FOOTER ========== */


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-col a,
.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    display: block;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--light-bg);
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social .social-links {
    margin-left: 1rem;
}

.footer-social .social-links a {
    width: 38px;
    height: 38px;
}

footer .navbar {
    padding: 1rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 10px auto;
    width: 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-collapse {
        margin-top: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .youtube-wrapper {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-toggler {
  border: none;
  background: transparent;
  padding: 10px;
}

.custom-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: #000;
  margin: 6px 0;
  transition: 0.3s;
}
.navbar-toggler:focus{
    box-shadow: none;
}

/* CROSS STATE */
.custom-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


@media (max-width: 1024px) {

    .hero h1 {
        font-size: 4rem;
        letter-spacing: 10px;
    }

    .intro-wrapper {
        gap: 2rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .youtube-wrapper {
        grid-template-columns: 1fr;
    }

    .video-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }

    .video-item {
        min-width: 220px;
    }

    .timeline {
        max-width: 100%;
    }

    .intro-section {
        padding: 20px 0 0;
    }

    .intro-label {
        padding-left: 0 !important;
    }

    .intro-label::before {
        display: none;
    }

    .intro-text .line {
        margin: 0 auto 15px;
    }

    .pt-image img {
        width: 100%;
    }

    .concepts-section::before {
        width: 100%;
        height: 200px;
    }

    .concepts-section h2 {
        text-align: center;
        font-size: 1.7rem;
    }

    .concepts-section {
        padding: 2rem 0;
    }

    .timeline-item {
        padding-left: 12px;
        padding-bottom: 10px;
    }

    .timeline-item .content {
        width: 78%;
        margin: 0 auto;
    }

    .testimonials-section {
        padding: 20px 0;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonials-section .sub-heading {
        margin-bottom: 20px;
    }

    .instagram-section {
        padding: 2rem 0;
    }

    .instagram-section h2 {
        font-size: 2rem;
    }

    .instagram-section .btn-primary {
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-size: 14px;
    }

    .media-section {
        padding: 2rem 0;
    }

    .media-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .youtube-section,
    .newsletter-section {
        padding: 2rem 0 !important;
    }

    .youtube-section h2,
    .newsletter-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .video-item p {
        margin-bottom: 0 !important;
    }

    .newsletter-section p {
        margin-bottom: 20px;
    }

    .footer .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .navbar-brand {
        margin-right: 0 !important;
    }

    .footer .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .footer-social {
        margin-left: 0 !important;
    }

    .footer .footer-social .social-links {
        margin-left: 0 !important;
    }

    .creative {
        position: absolute;
        height: 40%;
        right: 0;
        top: unset;
        bottom: 200px;
    }

    .intro-text h2 {
        font-size: 1.7rem;
        margin-bottom: 9px;
    }

    .intro-description {
        margin-bottom: 10px;
    }

    .hero {
        height: 85vh;
    }

    .timeline-item .image{
        width: 78%;
        margin: 0 auto;
        height: 100%;
    }
    .timeline-item .image img{
        height: auto;
    }
    .intro-quote {
        font-size: 1.3rem;
        margin: 0rem 0;
        line-height: 1.3;
    }
    .timeline-dot{
    position: absolute;
    left: 12px;
    top: 0%;
    }
    .concepts-section p {
        margin-bottom: 2rem;
}
    .timeline-item:nth-child(odd) .content {
        order: 1;
        text-align: left;
    }
}



@media (max-width: 768px) {

    /* HERO */
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
        line-height: normal;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    /* NAVBAR FIX */
    .navbar-nav .btn-primary {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    /* INTRO */
    .intro-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pt-image {
        justify-content: center;
    }


    .content p {
        max-width: 100%;
    }

    /* YOUTUBE SECTION */
    .youtube-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-video {
        padding-top: 56.25%;
        /* responsive video */
    }

    .video-item {
        flex-direction: row;
        align-items: center;
    }

    .video-item img {
        width: 100px;
        height: 70px;
    }

    /* INSTAGRAM */
    .insta-item {
        width: 100%;
        height: auto;
    }

    /* MEDIA */
    .media-image {
        height: 200px;
    }

    /* FOOTER */
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}