@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
/* <weight>: Use a value from 100 to 900 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* <weight>: Use a value from 200 to 800 */

@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&display=swap');
/* <weight>: Use a value from 160 to 700 */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* <weight>: Use a value from 100 to 900 */
/* font-family: "Barlow", sans-serif; */
/* font-family: "Barlow Semi Condensed", sans-serif; */
/* font-family: "Barlow Condensed", sans-serif; */

/* ===================================
   CSS Variables for Theme Switching
   =================================== */
:root {
    --primary-green: #021C13;
    --dark-green: #0d3d2f;
    --accent-gold: #c4a574;
    --light-gold: #d4b584;
    --bg-primary: #0a2820;
    --bg-secondary: #1a4d3e;
    --text-primary: #f5f5dc;
    --text-secondary: #c4a574;
    --text-green: #0d3d2f;
    --card-bg: rgba(26, 77, 62, 0.3);
    --card-hover: rgba(26, 77, 62, 0.6);
    --overlay: rgba(10, 40, 32, 0.85);
}

/* ===================================
   Global Styles. #6B573C
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 50%, var(--dark-green) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            var(--accent-gold) 50px,
            var(--accent-gold) 52px,
            transparent 52px,
            transparent 100px
        );
    opacity: 0.1;
    animation: slideStripes 20s linear infinite;
}

@keyframes slideStripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-green) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* 30 Years Badge Horizontal */
.anniversary-badge-horizontal {
    gap: 0.5rem;
    animation: fadeInScale 1s ease-out;
}

.badge-number-large {
    font-size: 12rem;
    font-family: "Fraunces", serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}


.badge-text-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-years {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.2;
}

.badge-tagline {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.moto {
    font-family: "Barlow", sans-serif;
    font-size: 32px;
    letter-spacing: 1.2px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}
.moto span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: white;
    line-height: 1.2;
}
.prime-logo {
    max-width: 350px;
}

/* Hero Headline */
.hero-headline {
    font-family: "Fraunces", serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out both;
}

.headline-white {
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--text-primary);
    display: inline-block;
}

.headline-gold {
    font-size: 4.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Description */
.hero-description {
    font-family: "Barlow", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    animation: fadeInUp 1.2s ease-out both;
    animation-delay: 0.2s;
}

.hero-description strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Discover Text */
.discover-text {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.6s ease-out both;
    animation-delay: 0.6s;
}

.number-30 {
    font-size: 8rem;
    font-family: "Fraunces", serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.number-30::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.years-text {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: left;
    line-height: 1.3;
}

.hero-title {
    font-size: 5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Companies Section
   =================================== */
.companies-section {
    padding-top: 5rem;
    padding-bottom: 0.5rem ;
    background: var(--accent-gold);
    position: relative;
}

.companies-section .section-label {
    color: var(--dark-green);
    opacity: 0.8;
}

.companies-section .section-title-wrapper {
    border-left-color: var(--dark-green);
}

.companies-section .section-title-new {
    color: var(--dark-green);
}

.companies-section .section-description {
    color: var(--dark-green);
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.section-header-new {
    margin-bottom: 2rem;
}

.section-title-wrapper {
    padding-left: 1.5rem;
    border-left: 4px solid var(--text-primary);
}

.section-label {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title-new {
    font-size: 3rem;
    font-family: "Fraunces", serif;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
    text-align: right;
}

.company-item {
    transition: transform 0.3s ease;
}

.company-card {
    display: block;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.company-card:hover {
    background: rgba(255, 255, 255, .5);
    /* border-color: var(--dark-green); */
    transform: translateY(-10px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(26, 77, 62, 0.3);
}

.company-logo {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 0.5rem;
}

.company-card:hover .company-logo img {
    transform: scale(1.1);
}

.company-name {
    font-size: 0.8rem;
    color: var(--dark-green);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.company-card:hover .company-name {
    color: var(--dark-green);
    opacity: 0.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--accent-gold);
    padding-top: 0rem;
    padding-bottom: 0.5rem;
    border-top: 2px solid var(--accent-gold);
}

.footer-copyright, .footer-credits {
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-green);
    opacity: 0.7;
}
.footer-credits a {
    color: var(--text-green);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-credits a:hover {
    color: var(--text-green);
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out both;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .number-30 {
        font-size: 6rem;
    }

    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tagline-brand {
        font-size: 2.5rem;
    }
    
    .tagline-statement {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    
    .badge-number-large {
        font-size: 5rem;
    }
    
    .badge-text-right {
        align-items: center;
    }
    
    .badge-years {
        font-size: 1.2rem;
    }
    
    .badge-tagline {
        font-size: 1.5rem;
    }
    
    .hero-headline {
        line-height: 1.1;
    }
    
    .headline-white,
    .headline-gold {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-tagline-italic {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .discover-text {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .conclusion-text {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .section-description {
        text-align: left;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .section-label {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .companies-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .number-30 {
        font-size: 3rem;
    }
    
    .years-text {
        font-size: 1rem;
    }
    
    .company-card {
        padding: 1.5rem;
    }
    .badge-years {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .prime-logo {
        max-width: 250px;
    }
    .headline-white,
    .headline-gold {
        font-size: 2rem;
    }
}

/* ===================================
   Stagger Animation Delays
   =================================== */
.company-item:nth-child(1) .company-card { transition-delay: 0.1s; }
.company-item:nth-child(2) .company-card { transition-delay: 0.2s; }
.company-item:nth-child(3) .company-card { transition-delay: 0.3s; }
.company-item:nth-child(4) .company-card { transition-delay: 0.4s; }
.company-item:nth-child(5) .company-card { transition-delay: 0.5s; }
.company-item:nth-child(6) .company-card { transition-delay: 0.6s; }
.company-item:nth-child(7) .company-card { transition-delay: 0.7s; }
.company-item:nth-child(8) .company-card { transition-delay: 0.8s; }
.company-item:nth-child(9) .company-card { transition-delay: 0.9s; }
.company-item:nth-child(10) .company-card { transition-delay: 1s; }
