/* Font Declarations */
@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Roman.woff2") format("woff2");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "SST";
    src: url("fonts/SSTW02Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
}

/* CSS Variables from Figma */
:root {
    --color-black: #020200;
    --color-background: #ffffff;
    --color-foreground: #ffffff;
    --color-primary: #ff4b00;
    --color-secondary: #ff4e0f;
    --color-dark-blue: #01275f;
    
    --gap-4: 16px;
    --gap-6: 24px;
    --gap-7: 32px;
    --gap-11: 64px;
    
    --padding-0: 0;
    --padding-6: 16px;
    --padding-8: 24px;
    --padding-9: 32px;
    
    --max-screen-width: 1190px;
    --round-3: 12px;
}

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

body {
    font-family: "SST", sans-serif;
    font-weight: 200;
    color: var(--color-black);
    background-color: var(--color-background);
    line-height: 1.5;
}

button,
a {
    cursor: pointer;
}

.container {
    max-width: var(--max-screen-width);
    margin: 0 auto;
    padding: 0 55px;
}

/* Header */
.header {
    background-color: var(--color-background);
    padding: var(--padding-8) 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--gap-4);
    flex: 1;
}

.logo-sony-center {
    height: 30px;
    width: 197.462px;
}

.header-subtitle {
    font-family: "SST", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-black);
    padding-bottom: 2px;
}

.header-right {
    width: 113.636px;
}

.logo-sony {
    height: 18px;
    width: 102.273px;
}

/* Hero Section */
.hero-section {
    width: 100%;
}

/* Top Banner */
.top-banner {
    position: relative;
    width: 100%;
    padding: 50px 0 34px;
    background-image: url('img/TopBanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.top-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(78.933deg, rgb(1, 39, 95) 34.938%, rgba(1, 39, 95, 0) 83.08%);
    pointer-events: none;
}

.top-banner-content {
    position: relative;
    display: flex;
    gap: 34px;
    align-items: flex-start;
    padding: 0 32px;
}

.calendar-wrapper {
    flex-shrink: 0;
}

.calendar-img {
    width: 145.504px;
    height: 177.191px;
    object-fit: cover;
}

.top-banner-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--color-foreground);
    letter-spacing: -1.2px;
    white-space: nowrap;
}

.hero-title span {
    display: block;
}

/* Banner Section */
.banner-section {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.banner-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 0 24px;
    overflow: hidden;
}

.banner-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.main-text {
    padding: 40px;
}

.main-title {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 44px;
    line-height: normal;
    color: var(--color-black);
    letter-spacing: -0.88px;
    margin: 0;
}

.arrow-big-text {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.arrow-big-text-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-right {
    width: 40%;
    padding-top: 80px;
    flex-shrink: 0;
}

.alpha-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1863 / 1712;
    object-fit: cover;
}

/* CMS Section */
.cms-section {
    width: 100%;
    padding: 24px 0;
    overflow: hidden;
}

.cms-content {
    display: flex;
    gap: 60px;
}

.cms-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0 40px;
}

.cms-icon {
    width: 61.772px;
    height: 60px;
}

.cms-col:last-child .cms-icon {
    width: 57.36px;
    height: 60px;
}

.cms-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cms-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-black);
    letter-spacing: -0.48px;
    margin: 0;
}

.cms-description {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
    letter-spacing: -0.32px;
    margin: 0;
}

.cms-description strong {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 48px 0;
}

.cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--round-3);
    box-shadow: none;
    background-color: var(--color-background);
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.cta-box.expanded {
    box-shadow: 0px 4px 35px 0px rgba(196, 212, 233, 1);
}

.cta-button {
    background-color: var(--color-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    gap: var(--gap-7);
    align-items: center;
    justify-content: center;
    padding: var(--gap-4) var(--gap-7);
    color: var(--color-foreground);
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.36px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 78, 15, 0.3);
}

.cta-contact-info {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0 44px;
    margin-top: 40px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.cta-box.expanded .cta-contact-info {
    max-height: 200px;
    opacity: 1;
    margin-top: 40px;
}

.cta-contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-contact-label {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 35px;
    color: rgba(2, 2, 0, 0.5);
    letter-spacing: -0.34px;
    margin: 0;
}

.cta-contact-value {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: normal;
    color: var(--color-dark-blue);
    letter-spacing: -0.52px;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.cta-contact-value:hover {
    color: var(--color-secondary);
    opacity: 0.8;
}

.cta-contact-value:active {
    opacity: 0.6;
}

.cta-products-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.cta-products-button {
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    display: flex;
    gap: var(--gap-7);
    align-items: center;
    justify-content: center;
    padding: var(--padding-6) var(--padding-9);
    color: var(--color-black);
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.32px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-products-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.arrow-icon {
    flex-shrink: 0;
}

/* CMS2 Section */
.cms2-section {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.cms2-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.cms2-text {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 24px;
    line-height: normal;
    color: var(--color-black);
    letter-spacing: -0.48px;
    margin: 0;
}

.cms2-text-bold {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: var(--color-secondary);
    letter-spacing: -0.48px;
    margin: 0;
}


/* Products Section */
.products-section {
    background-color: var(--color-background);
    padding: 120px 0 60px;
}

.products-title {
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: normal;
    color: var(--color-black);
    text-align: center;
    margin: 0 0 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--max-screen-width);
    margin: 0 auto;
}

.product-button {
    border: 1px solid var(--color-black);
    background: transparent;
    cursor: pointer;
    display: flex;
    gap: var(--gap-7);
    align-items: center;
    justify-content: space-between;
    padding: var(--padding-8) var(--padding-9);
    color: var(--color-black);
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.32px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Footer / Newsletter */
.footer {
    background-color: var(--color-background);
    padding: 60px 0;
}

.newsletter-section {
    position: relative;
    height: 425.846px;
    padding: 44px 0;
    background-image: url('img/Section-Newsletter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(-68.6842deg, rgb(1, 39, 95) 28.231%, rgba(1, 39, 95, 0) 116.38%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gap-6);
    align-items: center;
    height: 100%;
}

.newsletter-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.newsletter-title {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 30px;
    line-height: normal;
    color: var(--color-foreground);
    letter-spacing: -0.6px;
    margin: 0;
}

.newsletter-logo {
    height: 35.855px;
    width: 236px;
}

.newsletter-description {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: normal;
    color: var(--color-foreground);
    letter-spacing: -0.36px;
    text-align: center;
    max-width: 600px;
    margin: 0;
}

.newsletter-features {
    display: flex;
    gap: 3.257px;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
    width: 896px;
}

.newsletter-feature {
    flex: 1;
    display: flex;
    gap: 19.54px;
    align-items: flex-start;
    padding: 4.885px 13.027px;
}

.feature-icon {
    width: 48.221px;
    height: 48.221px;
    flex-shrink: 0;
}

.feature-text {
    font-family: "SST", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: normal;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-text span {
    display: block;
}

.newsletter-button {
    border: 1px solid var(--color-foreground);
    background: transparent;
    cursor: pointer;
    display: flex;
    gap: var(--gap-7);
    align-items: center;
    justify-content: center;
    padding: var(--padding-6) var(--padding-9);
    color: var(--color-foreground);
    font-family: "SST", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.32px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design - Bootstrap 5 Breakpoints */
/* Extra small: <576px */
@media (max-width: 575.98px) {
    .container {
        padding: 0 20px;
    }
    
    .header-row {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .logo-sony-center {
        height: 34.5px;
        width: 227.0813px;
    }
    
    .top-banner-content {
        flex-direction: column;
        padding: 0 15px;
        gap: 20px;
    }
    
    .calendar-img {
        width: 100px;
        height: 122px;
    }
    
    .hero-title {
        font-size: 34px;
        line-height: 42px;
        white-space: normal;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0 20px;
    }
    
    .banner-left {
        width: 100%;
        padding: 0;
    }

    .banner-right {
        width: 100%;
        padding-top: 0;
    }
    
    .main-text {
        padding: 20px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .arrow-text {
        font-size: 28px;
        line-height: 36px;
    }
    
    .cms-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cms-col {
        padding: 0 20px;
    }
    
    .newsletter-features {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        padding: 16px 20px;
    }
    
    .newsletter-description {
        padding: 0 20px;
    }
    
    .newsletter-section {
        height: auto;
        min-height: 425.846px;
    }
    
    
    .arrow-big-text-img {
        width: 100%;
        display: block;
    }
    
    .cta-box {
        width: 95%;
        padding: 20px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .product-button {
        font-size: 14px;
        padding: 18px 20px;
    }
}

/* Small: ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 30px;
    }
    
    .header-row {
        padding: 0 20px;
    }
    
    .top-banner-content {
        padding: 0 20px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .banner-right {
        width: 100%;
        padding-top: 0;
    }
    
    .cms-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-features {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .newsletter-section {
        height: auto;
        min-height: 425.846px;
    }
}

/* Medium: ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        padding: 0 40px;
    }
    
    .header-row {
        padding: 0 30px;
    }
    
    .top-banner-content {
        padding: 0 30px;
    }
    
    .banner-content {
        gap: 40px;
    }
    
    .banner-right {
        width: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .newsletter-features {
        width: 100%;
        max-width: 896px;
    }
}

/* Large: ≥992px */
@media (min-width: 992px) {
    /* Desktop styles already defined above */
}

