/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: #FF9A00;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.6rem;
    color: #000;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='36' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>❤️</text></svg>") 16 0, auto;
}

.ticker-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3.2rem;
    background: #6B46C1;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.page-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        "header"
        "main"
        "footer";
    min-height: 100vh;
    width: 100%;
    padding: 7.2rem 4rem 4rem 4rem;
    margin-top: 6.4rem;
    box-sizing: border-box;
}

.ticker-text {
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    animation-delay: 0s;
}

.ticker-text span {
    color: white;
    font-family: "Darker Grotesque";
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.header {
    grid-area: header;
    margin-bottom: 2rem;
    margin-top: 0.5rem
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
}

.logo-video {
    height: 4rem;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.main-content {
    grid-area: main;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    height: 100%;
}

.footer {
    grid-area: footer;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-text {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.2rem;
}

.icon {
    width: 2.4rem;
    height: 2.4rem;
    background-color: #000;
    border-radius: 50%;
}

.icon:nth-child(2) {
    border-radius: 0;
    transform: rotate(45deg);
}

.icon:nth-child(3) {
    border-radius: 0.4rem;
}

/* Image Section */
.image-section {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-image {
    flex: 1;
    border-radius: 2.4rem;
    overflow: hidden;
    background-color: #ccc;
}

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

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

/* Hero Text Subheader Class */
.hero-text-subheader {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}

/* Hero Text Header Class */
.hero-text-header {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 12rem;
    font-style: normal;
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Paragraph Styles */
p {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Description Text */
.description {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2rem;
}

/* Hero CTA Button */
.cta-button {
    border-radius: 2.4rem;
    background: #000;
    color: #fff;
    font-family: "Darker Grotesque";
    font-size: 2.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.2rem 2.4rem;
    width: 100%;
    cursor: pointer;
    margin: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.2rem solid #000;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}


.cta-button:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0.8rem 2.5rem rgba(139, 69, 19, 0.4);
    /* animation: pulse 1.5s infinite; */
}

.cta-button:hover::before {
    left: 100%;
}


.cta-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0.8rem 2.5rem rgba(139, 69, 19, 0.4);
    }
    50% {
        box-shadow: 0 0.8rem 2.5rem rgba(139, 69, 19, 0.4), 0 0 3rem rgba(139, 69, 19, 0.2);
    }
}

.cta-button:focus {
    outline: 0.3rem solid #ffbf47;
    outline-offset: 0.2rem;
}

/* Image Credit */
.image-credit {
    color: #674701;
    font-family: "Darker Grotesque";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.8rem 0;
}

/* Tablet Breakpoint (768px and up) */
@media (min-width: 48em) {
    .hero-text-header {
        font-size: clamp(4rem, 10vw, 12rem);
    }
    
    .hero-text-subheader {
        font-size: clamp(3.6rem, 4vw, 4.8rem);
    }
}

/* Desktop Breakpoint (1024px and up) */
@media (min-width: 64em) {
    .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem;
    }
    
    .main-content {
        gap: 6rem;
    }
    
    .cta-button {
        padding: 1.6rem 3.2rem;
        font-size: 1.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-text-header {
        font-size: 8rem;
    }
    
    .hero-text-subheader {
        font-size: 3.6rem;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 2rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-text-header {
        font-size: 4rem;
    }
    
    .hero-text-subheader {
        font-size: 2.8rem;
    }
    
    .description {
        font-size: 1.6rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}