* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RacingSansOne';
    src: url('../fonts/RacingSansOne-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima\ Nova\ Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Page transition styles */
#page1, #page2 {
    transition: opacity 0.5s ease-in-out;
}

#page1 {
    opacity: 1;
}

#page2 {
    display: none;
    opacity: 0;
}

/* Remove spacing from page wrapper */
.page-content {
    margin: 0;
    padding: 0;
    display: block;
}

/* Ensure all sections and headers have no default spacing */
header, section {
    margin: 0;
    padding: 0;
    display: block;
}

/* Top Header Bar */
.top-header {
    background: #2D2D2D;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-bottom: 0 !important;
    line-height: normal;
    position: relative;
    z-index: 3;
    border-bottom: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.says-logo {
    width: 89px;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    letter-spacing: 2px;
}

.exclusive-text {
    /* background: white; */
    color: #ffffff;
    /* padding: 4px 12px; */
    border-radius: 4px;
    font-family: 'Proxima Nova', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.share-btn {
    width: 135px;
    height: 29px;
    background: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: white;
    color: #2D2D2D;
}

.share-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section - Cover Image */
.hero-section {
    position: relative;
    overflow: visible;
    margin: 0 !important;
    /* margin-top: -26px !important; Pull up to ensure no gap */
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    display: block !important;
    z-index: 2;
    border: 0;
    outline: 0;
}

/* Hero Image Responsive Control */
.hero-mobile {
    display: none !important;
}

.hero-desktop {
    display: block;
}

.hero-section video {
    width: 100%;
    height: auto;
    /* display: block !important; */
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0;
    vertical-align: bottom !important;
    margin-bottom: -225px !important; /* Cut the bottom to blend with purple gradient */
    max-width: 100%;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.overlay-text-container {
  position: absolute;
  bottom: 15%;             /* start from middle of section */
  left: 50%;   
  width: 100%;
  transform: translate(-50%, 50%); /* perfectly centered anchor */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Top bottom text - normal */
.bottom-overlay-text {
  font-size: 52px;
  font-weight: 400;
  font-family: 'Marcellus', sans-serif;
  color: #FCF5DD;
  line-height: 1;
  text-align: center;
  transform: translateY(-40px); /* move this up/down as you like */
  text-shadow: 1.4px 1.4px 0px #000000;
}

/* Lower bottom text - badge */
.bottom-overlay-badge {
  font-size: 24px;
  font-weight: 400;
  font-family: 'Marcellus', sans-serif;
  background: #464297;
  padding: 17px 25px;
  border-radius: 16px;
  color: #fff;
  transform: translateY(-10px); /* move this vertically as you like */
  text-shadow: 1.4px 1.4px 0px #000000;
}


/* Main Content Section */
.main-content {
    background: linear-gradient(180deg, #46429A 19.41%, #75709D 100%);
    /* min-height: 100vh; */
    padding: 270px 0 0;
    position: relative;
    z-index: 1;
}

/* Left Side - Image with Dotted Border */
.image-container {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px;
}

.dotted-image {
    width: 392px;
    height: 292px;
    border: 3px dashed #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.dotted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Text Content */
.text-container {
    color: white;
    text-align: left;
    padding: 20px 20px 0;
}

.main-heading {
    font-family: 'Marcellus', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
    color: white;
}

.sub-heading {
    color: #FBA637;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 25px;
}

.description-text {
    color: white;
    font-family: 'Marcellus', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 50px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 0;
}

.left-button-design {
    width: 37px;
    height: 37px;
    transform: rotate(-20.59deg);
    opacity: 1;
    margin-top: -80px;
}

.right-button-design {
    width: 37px;
    height: 37px;
    transform: rotate(100.22deg);
    opacity: 1;
    margin-top: -80px;
}

.left-button-design img,
.right-button-design img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
}

/* Desktop */
@media (min-width: 768px) {
    .left-button-design,
    .right-button-design {
        width: 58px;
        height: 58px;
    }
}

/* Button */
.lets-go-btn {
    background: #D5A832;
    color: #FFFFFF;
    border: none;
    padding: 6px 6px 0;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Marcellus', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-width: 1px;
    border: 1px solid #FFFFFF80;
}

.lets-go-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #C49A30;
}

.btn-border {
    display: flex;
    justify-content: center;
    border: 1px solid #FFFFFF80;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.btn-content {
    padding: 8px 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1.4px 1.4px 0px #000000;
}

.lets-go-btn i {
    font-size: 23px;
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .text-container {
                text-align: center;
            }

            .top-header {
                padding: 15px 20px;
            }
        }

        @media (max-width: 1024px) {
            .image-container {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            /* Hide header on mobile */
            .top-header {
                display: none;
            }

            /* Show mobile hero, hide desktop hero */
            .hero-mobile {
                display: block !important;
                margin-bottom: -50px !important;
                height: 85vh !important;
                max-height: 100vh !important;
                width: 100%;
                max-width: 100%;
                object-fit: cover !important;
                object-position: center !important;
            }

            .hero-desktop {
                display: none !important;
            }

            .hero-section video {
                margin-bottom: -310px !important;
                height: 95vh;
                background-position: center;
                object-fit: cover;
            }            

            .overlay-text-container {
                width: 80%;
                top: 18%;
            }

            .bottom-overlay-text {
                font-size: 38px;
                line-height: 45px;
            }

            .bottom-overlay-badge {
                font-size: 16px;
            }

            .main-content {
                padding: 250px 0 0;
            }

            .dotted-image {
                width: 320px;
                height: 240px;
            }

            .main-heading {
                font-size: 28px;
                line-height: 38px;
                text-align: center;
                padding-right: 0;
            }

            .sub-heading {
                text-align: start;
                font-size: 16px;
            }

            .description-text {
                text-align: center;
                font-size: 16px;
            }

            .hero-section img {
                margin-bottom: -50px;
            }
            
            .text-container {
                text-align: center;
                padding: 120px 40px 0;
            }
        }

        @media (max-width: 400px) {
            .text-container {
                padding: 120px 20px 0;
            }
        }

        @media (min-width: 320px) and (max-width: 399px) {
            .bottom-overlay-badge {
                padding: 17px 12px;
            }
        }

        