/* Font Face Declarations */
/* NewBlack Typeface - Bold */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-Bold.woff2') format('woff2'),
         url('font/NewBlackTypeface-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* NewBlack Typeface - Regular */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-Regular.woff2') format('woff2'),
         url('font/NewBlackTypeface-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* NewBlack Typeface - Medium */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-Medium.woff2') format('woff2'),
         url('font/NewBlackTypeface-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* NewBlack Typeface - Light */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-Light.woff2') format('woff2'),
         url('font/NewBlackTypeface-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* NewBlack Typeface - ExtraBold */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-ExtraBold.woff2') format('woff2'),
         url('font/NewBlackTypeface-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

/* NewBlack Typeface - SemiBold */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-SemiBold.woff2') format('woff2'),
         url('font/NewBlackTypeface-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* NewBlack Typeface - UltraLight */
@font-face {
    font-family: 'NewBlack Typeface';
    src: url('font/NewBlackTypeface-UltraLight.woff2') format('woff2'),
         url('font/NewBlackTypeface-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

/* Uncut Sans - Bold */
@font-face {
    font-family: 'Uncut Sans';
    src: url('font/UncutSans-Bold.woff2') format('woff2'),
         url('font/UncutSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* DINPro - Regular */
@font-face {
    font-family: 'DINPro';
    src: url('font/DINPro-Regular.woff2') format('woff2'),
         url('font/DINPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NewBlack Typeface', sans-serif;
    overflow-x: hidden;
    width: 100vw;
}

/* Hero Container */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Background Image with Zoom Effect */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: zoomOut 20s ease-out forwards;
    z-index: 1;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Top Left Logo */
.logo-top-left {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.logo-top-left img {
    height: 20px;
    width: auto;
}

/* Top Right Location */
.location-top-right {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.location-top-right img {
    height: 20px;
    width: auto;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: white;
    width: 90%;
    max-width: 1200px;
}

/* Introducing Text */
.introducing {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    color: #16607F;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

/* Main Heading */
.main-heading {
    font-family: 'NewBlack Typeface', sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 59px;
    letter-spacing: 0px;
    text-align: center;
    color: #16607F;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

/* Size Info */
.size-info {
    font-family: 'NewBlack Typeface', sans-serif;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #16607F;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background-color: #FFBD12;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #16607F;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #16607F;
    transform: scale(1.05);
}

.download-btn:active {
    transform: scale(0.98);
}

.download-btn img {
    width: 20px;
    height: 20px;
}

/* Bottom Left Logo */
.logo-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.logo-bottom-left img {
    height: 35px;
    width: auto;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highly Connected Section */
.highly-connected-section {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #16607F 0%, #A2B9C3 100%);
    border-top: 7px solid #FFFFFF;
    padding: 80px 20px;
}

.section-content {
    max-width: 800px;
    text-align: center;
}

/* Section Label - "HIGHLY CONNECTED" */
.section-label {
    font-family: 'Uncut Sans', 'NewBlack Typeface', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Section Heading */
.section-heading {
    font-family: 'NewBlack Typeface', sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* Section Description */
.section-description {
    font-family: 'Uncut Sans', 'NewBlack Typeface', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #FFFFFFE5;
    text-align: center;
    padding: 40px 50px;
    border-radius: 8px;
    max-width: 100%;
}

/* Full Width Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000000;
    border-top: 7px solid #FFFFFF;
}

.full-width-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Footer Section */
.footer-section {
    background-color: #1D1D1B;
    padding: 60px 80px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Footer Left Side */
.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 20px;
    width: auto;
}

.footer-intro {
    font-family: 'NewBlack Typeface', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-btn {
    margin-top: 10px;
}

/* Footer Right Side */
.footer-right {
    flex: 1;
    display: flex;
    gap: 18%;
    flex-wrap: wrap;
}

.agent-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-content: flex-start;
    align-items: flex-start;
}

.agent-logo {
    height: 55px;
    width: auto;
}

.agent-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.agent-name {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFBD12;
    margin: 0;
}

.agent-contact {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
}

.footer-caddick {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-end;
}

.development-by {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFBD12;
    margin: 0;
}

.caddick-logo {
    height: 30px;
    width: auto;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    max-width: 1600px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 50px auto 30px auto;
}

/* Footer Small Print */
.footer-small-print {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-small-print p {
    font-family: 'DINPro', Arial, sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-top-left {
        top: 20px;
        left: 20px;
    }

    .location-top-right {
        top: 20px;
        right: 20px;
    }

    .logo-bottom-left {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-top-left img {
        height: 15px;
    }

    .location-top-right img {
        height: 15px;
    }

    .logo-bottom-left img {
        height: 28px;
    }

    .introducing {
        font-size: 14px;
        line-height: 24px;
    }

    .main-heading {
        font-size: 28px;
        line-height: 38px;
    }

    .size-info {
        font-size: 16px;
        line-height: 24px;
    }

    .download-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* Highly Connected Section - Tablet */
    .section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-description {
        padding: 30px 40px;
        font-size: 14px;
        line-height: 23px;
    }

    /* Video Section - Tablet */
    .video-section {
        height: 70vh;
        min-height: 400px;
    }

    /* Footer - Tablet */
    .footer-section {
        padding: 50px 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-right {
        gap: 40px;
    }

    .footer-divider {
        margin: 40px 0 25px 0;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .introducing {
        font-size: 12px;
    }

    .size-info {
        font-size: 14px;
    }

    /* Highly Connected Section - Mobile */
    .highly-connected-section {
        padding: 60px 20px;
    }

    .section-label {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .section-description {
        padding: 25px 20px;
        font-size: 13px;
        line-height: 21px;
    }

    /* Video Section - Mobile */
    .video-section {
        height: 60vh;
        min-height: 350px;
    }

    /* Footer - Mobile */
    .footer-section {
        padding: 40px 20px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-right {
        flex-direction: column;
        gap: 35px;
    }

    .footer-logo img {
        height: 25px;
    }

    .footer-intro {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-divider {
        margin: 30px 0 20px 0;
    }

    .footer-small-print p {
        font-size: 9px;
        line-height: 14px;
    }
}
