/* 
 * TEDx Complete Design System
 * Official TEDx Theme - Helvetica Neue
 * Modern, Clean, Professional
 */

/* ===========================
   RESET & BASE
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --tedx-red: #EB0028;
    --tedx-dark-red: #C4001D;
    --tedx-black: #000000;
    --tedx-white: #FFFFFF;
    --tedx-gray: #F3F3F3;
}

/* ===========================
   HEADER
   =========================== */

.header {
    background: var(--tedx-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--tedx-red);
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: var(--tedx-white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1.5px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.nav-brand .tedx-red {
    color: var(--tedx-red);
    font-weight: 900;
}

.nav-brand .university-name {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: var(--tedx-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--tedx-red);
}

/* ===========================
   HERO SECTION - OUTSTANDING DESIGN
   =========================== */

.hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #111111 70%, #000000 100%);
    color: var(--tedx-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Animated Grid Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(235, 0, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 0, 40, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

/* Floating Orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 0, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-50px, 50px) scale(1.1); opacity: 0.8; }
}

/* Second Floating Orb */
.hero .hero-content::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 0, 40, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -200px;
    animation: floatOrb2 12s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.2); }
}

.hero-content {
    max-width: 1000px;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

/* TEDx Logo with Glow Effect */
.hero-logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.tedx-text {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -5px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.x-red {
    color: var(--tedx-red);
    text-shadow: 0 0 30px rgba(235, 0, 40, 0.5), 0 0 60px rgba(235, 0, 40, 0.3);
    animation: xPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 0 0 60px rgba(255, 255, 255, 0.2); }
}

@keyframes xPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.university-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Theme Text with Gradient */
.hero-theme {
    font-size: 32px;
    font-weight: 300;
    margin: 30px 0;
    background: linear-gradient(90deg, #ffffff, #EB0028, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite, fadeInUp 1s ease-out 0.5s both;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero Details Cards */
.hero-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 0, 40, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-detail-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(235, 0, 40, 0.5);
    box-shadow: 0 15px 40px rgba(235, 0, 40, 0.2);
}

.hero-detail-item:hover::before {
    left: 100%;
}

.detail-icon-svg {
    width: 22px;
    height: 22px;
    stroke: #EB0028;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(235, 0, 40, 0.5));
}

.info-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 18px 45px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tedx-red) 0%, #ff1a1a 50%, var(--tedx-red) 100%);
    background-size: 200% 200%;
    color: var(--tedx-white);
    border: none;
    box-shadow: 0 10px 30px rgba(235, 0, 40, 0.4);
    animation: btnGradient 3s ease infinite;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(235, 0, 40, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--tedx-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--tedx-white);
    color: var(--tedx-black);
    border-color: var(--tedx-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--tedx-red);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 30px; opacity: 0.3; }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--tedx-red);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 12s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Hero Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SECTIONS
   =========================== */

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--tedx-black);
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #666666;
}

/* ===========================
   EVENT INFO
   =========================== */

.event-info {
    background: var(--tedx-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--tedx-white);
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--tedx-red);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--tedx-black);
}

.info-card p {
    font-size: 15px;
    color: #666666;
}

/* Simplified Ticket Status */
.ticket-status-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-number {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.status-item.sold .status-number {
    color: var(--tedx-red);
}

.status-item.available .status-number {
    color: #2E7D32;
}

.status-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
}

.status-divider {
    width: 2px;
    height: 50px;
    background: #E0E0E0;
}

/* ===========================
   ABOUT & THEME
   =========================== */

.about, .theme {
    background: var(--tedx-white);
}

.about-intro, .theme-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #333333;
}

.about-grid, .theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.about-card, .theme-card {
    background: var(--tedx-gray);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.about-card:hover, .theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-card h3, .theme-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--tedx-black);
}

.about-card p, .theme-card p {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
}

/* ===========================
   TICKETS
   =========================== */

.tickets {
    background: var(--tedx-white);
}

.ticket-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ticket-card {
    background: var(--tedx-white);
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--tedx-red);
    border-radius: 16px 16px 0 0;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(235, 0, 40, 0.15);
    border-color: var(--tedx-red);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tedx-red);
    color: var(--tedx-white);
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(235, 0, 40, 0.3);
}

.ticket-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tedx-red);
    margin-bottom: 16px;
}

.ticket-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tedx-black);
}

.ticket-price {
    font-size: 44px;
    font-weight: 900;
    color: var(--tedx-red);
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.ticket-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #333333;
    position: relative;
    padding-left: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tedx-red);
    font-weight: 700;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.availability-badge {
    margin-top: 24px;
    padding: 10px 16px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
}

.availability-badge.low-stock {
    background: #FFF3E0;
    color: #E65100;
}

.availability-badge.very-low-stock {
    background: #FFEBEE;
    color: #C62828;
}

.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    background: var(--tedx-red);
    color: var(--tedx-white);
    padding: 12px 40px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ticket-card.sold-out {
    opacity: 0.6;
    pointer-events: none;
}

/* ===========================
   CTA
   =========================== */

.booking-cta {
    background: var(--tedx-black);
    color: var(--tedx-white);
    padding: 60px 40px;
    text-align: center;
    border-radius: 16px;
    margin: 0 20px;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--tedx-red);
    border-radius: 16px 16px 0 0;
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--tedx-black);
    color: var(--tedx-white);
    padding: 60px 0 30px;
    border-top: 3px solid var(--tedx-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--tedx-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--tedx-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===========================
   ENHANCED TICKET STATUS
   =========================== */

.ticket-status-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #E0E0E0;
}

.row-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #F8F9FA;
    border-radius: 6px;
    font-size: 13px;
}

.row-label {
    font-weight: 700;
    color: var(--tedx-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row-count {
    font-weight: 900;
    color: var(--tedx-red);
    font-size: 16px;
}

.total-summary {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, var(--tedx-red), var(--tedx-dark-red));
    border-radius: 8px;
    color: var(--tedx-white);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-count {
    font-size: 24px;
    font-weight: 900;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    .ticket-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--tedx-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-brand h1 {
        font-size: 22px;
    }
    
    .nav-brand .university-name {
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .tedx-text {
        font-size: 56px;
        letter-spacing: -3px;
    }
    
    .university-text {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    .hero-theme {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .ticket-types {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--tedx-black);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-detail-item {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero::after {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    
    .hero .hero-content::before {
        width: 200px;
        height: 200px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .tedx-text {
        font-size: 44px;
        letter-spacing: -2px;
    }
    
    .university-text {
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .hero-theme {
        font-size: 16px;
    }
    
    .hero-detail-item {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 30px;
    }
}
