/* ========================================
   RESET & BASE STYLES
   ======================================== */
html,
body,
div,
section,
article,
header,
footer,
nav,
main,
h1,
h2,
h3,
p,
a,
img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.hero-header {
    background: url(images/layer_1.png) no-repeat center top;
    background-size: cover;
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
}

.logo {
    margin: 0 auto 40px;
    display: block;
}

.header-decorations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.casting-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.header-decorations img {
    max-width: 60px;
    height: auto;
}



.main-title {
    background: url(images/vector_smart_object_7.jpg) no-repeat center;
    background-size: 100% 100%;
    padding: 25px 30px;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 30px auto;
    max-width: 900px;
    text-shadow: -2px 2px 0 rgba(204, 81, 163, 0.8);
    letter-spacing: 2px;
    word-wrap: break-word;
}

.header-bottom-deco {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-bottom-deco img {
    max-width: 50px;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
    padding: 60px 0;
}

.intro-text {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.intro-text strong {
    font-weight: 800;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

/* Pink sticker on main image */
.intro-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url(images/vector_smart_object_copy.png) no-repeat center;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .intro-image::after {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.intro-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-description p {
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   WINNERS SECTION
   ======================================== */
.winners-section {
    padding: 60px 0;
}

.section-title {
    background: url(images/vector_smart_object_copy__5.jpg) no-repeat center;
    background-size: 100% 100%;
    padding: 25px 30px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    max-width: 700px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    letter-spacing: 1px;
    position: relative;
    word-wrap: break-word;
}

.section-title::before,
.section-title::after {
    content: '★';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #E91E63;
}

.section-title::before {
    left: 10px;
}

.section-title::after {
    right: 10px;
}

.winners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    overflow: visible;
}

.winner-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    overflow: visible;
    transition: transform 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
}

.polaroid-frame {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: visible;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.winner-card:hover .polaroid-frame {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.winner-photo {
    width: 100%;
    height: 310px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center top;
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
}

.country-flag {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.winner-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.winner-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.winner-handle {
    font-size: 12px;
    color: #666;
}

/* ========================================
   NEXT STOP SECTION
   ======================================== */
.next-stop-section {
    background: url(images/layer_1_copy.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    padding-bottom: 0;
}

.next-stop-title {
    background-size: 100% 100%;
    padding: 25px 30px;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin: 30px auto;
    max-width: 900px;
    text-shadow: -2px 2px 0 rgba(204, 81, 163, 0.8);
    letter-spacing: 2px;
    word-wrap: break-word;
}

.bootcamp-date {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.bootcamp-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    min-height: 450px;
}

.bootcamp-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 40px;
}

.bootcamp-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    
}

/* Decorative icons */
.deco-icon {
    position: absolute;
    max-width: 50px;
    height: auto;
    z-index: 2;
}

.icon-1 {
    top: 10%;
    left: 5%;
    max-width: 42px;
}

.icon-2 {
    top: 15%;
    left: 10%;
    max-width: 75px;
}

.icon-3 {
    top: 5%;
    right: 10%;
    max-width: 48px;
}

.icon-4 {
    top: 12%;
    right: 5%;
    max-width: 20px;
}

.icon-5 {
    bottom: 30%;
    left: 8%;
    max-width: 34px;
}

.icon-6 {
    bottom: 25%;
    left: 15%;
    max-width: 38px;
}

.icon-7 {
    bottom: 15%;
    left: 5%;
    max-width: 15px;
}

.icon-8 {
    bottom: 18%;
    left: 10%;
    max-width: 27px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #E91E63;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media screen and (max-width: 1024px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        max-width: 100%;
    }
    
    .winner-card {
        flex: 0 1 calc(50% - 15px);
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .hero-header {
        padding: 30px 0 40px;
    }
    
    .logo {
        max-width: 180px;
        margin-bottom: 30px;
    }
    
    .casting-title {
        font-size: 28px;
    }
    
    .header-decorations img {
        max-width: 40px;
    }
    
    .main-title {
        font-size: 22px;
        padding: 20px 10px;
        background-size: 100% 100%;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .header-bottom-deco img {
        max-width: 35px;
    }
    
    /* Intro */
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .intro-description p {
        font-size: 15px;
    }
    
    /* Winners */
    .winners-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 20px;
        padding: 20px 10px;
        margin-bottom: 30px;
        background-size: 100% 100%;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .winners-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .winner-card {
        flex: 0 1 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .winner-name {
        font-size: 13px;
    }
    
    .winner-handle {
        font-size: 11px;
    }
    
    /* Next Stop */
    .next-stop-section {
        padding: 40px 0 0;
    }
    
    .next-stop-title {
        font-size:  30px;
    }
    
    .next-stop-title {
        font-size: 22px;
    }
    
    .bootcamp-date {
        font-size: 14px;
    }
    
    .bootcamp-wrapper {
        min-height: 300px;
    }
    
    .bootcamp-image {
        height: 350px;
    }
    .bootcamp-image img {
        object-position: center 92%;
    }
    
    /* Scale down decorative icons for mobile */
    .deco-icon {
        max-width: 25px !important;
    }
    
    .icon-2 {
        max-width: 35px !important;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav a {
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */
@media screen and (max-width: 480px) {
    .casting-title {
        font-size: 24px;
    }
    
    .main-title {
        font-size: 18px;
        padding: 18px 8px;
        letter-spacing: 0.5px;
    }
    
    .intro-text {
        font-size: 15px;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 18px;
        padding: 18px 8px;
        letter-spacing: 0px;
    }
    
    .next-stop-title {
        font-size: 20px;
    }
    
    .bootcamp-date {
        font-size: 14px;
    }
    
    .bootcamp-image {
        height: 420px;
    }
    .bootcamp-image img {
        object-position: center 98%;
    }

    .deco-icon {
        max-width: 20px !important;
    }

    .icon-2 {
        max-width: 30px !important;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
