/* ====================================
   JAY STREET VENTURES - PREMIUM DESIGN
   ==================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Instrument Serif', Georgia, serif;
    line-height: 1.6;
    color: #F5F0E8;
    background: #0A0A0A;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #F5F0E8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.15em;
}

h2 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: #D4AF37;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.1875rem);
    color: #D4AF37;
    font-weight: 700;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #C8C8C8;
}

.lead {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.6;
    color: #E8E8E8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0.6;
}

/* ====================================
   LAYOUT & CONTAINERS
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ====================================
   ANIMATED BACKGROUND PARTICLES
   ==================================== */

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float var(--duration, 20s) ease-in-out infinite var(--delay, 0s);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
}

.particle:nth-child(3) {
    top: 40%;
    left: 20%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.4;
    }
}

/* ====================================
   SECTION DIVIDERS
   ==================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4A7 50%, #D4AF37 80%, transparent 100%);
    margin: 6rem auto;
    max-width: 750px;
    opacity: 0.6;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 5px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    border-radius: 50%;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 5rem;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    position: relative;
}

.logo-container {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 0.3rem 0.4rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 32px rgba(212, 175, 55, 0.3));
}

.logo-container:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 12px 48px rgba(212, 175, 55, 0.4));
}

.main-logo {
    width: clamp(120px, 22vw, 190px);
    height: auto;
    position: relative;
    left: -4px;
    top: 2px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text {
    position: relative;
}

.hero-text h1 {
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: #C8C8C8;
    font-weight: 400;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto 2rem auto;
}

.scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #D4AF37;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
    color: #D4AF37;
}

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

/* ====================================
   MISSION SECTION
   ==================================== */

.mission {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 3rem;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.mission-text {
    position: relative;
}

/* ====================================
   VENTURES SECTION
   ==================================== */

.ventures {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.ventures-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* PREMIUM VENTURE CARDS */
.venture-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.6), rgba(35, 35, 35, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.08) 50%, 
        transparent 100%);
    transition: left 0.8s ease;
}

.venture-card:hover::before {
    left: 100%;
}

.venture-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(40, 40, 40, 0.9));
}

/* VENTURE LOGO STYLING */
.venture-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1rem;
    padding: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.venture-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.venture-card:hover .venture-logo::before {
    opacity: 1;
}

.venture-card:hover .venture-logo {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.venture-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: brightness(1.1);
}

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

/* VENTURE CONTENT */
.venture-content {
    flex: 1;
    text-align: left;
}

.venture-content h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: #D4AF37;
    transition: color 0.3s ease;
}

.venture-card:hover .venture-content h3 {
    color: #F4E4A7;
}

.venture-content p {
    margin-bottom: 2rem;
    color: #B8B8B8;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* VENTURE LINKS */
.venture-link,
.venture-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.venture-link a,
.venture-links a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Instrument Serif', Georgia, serif;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.venture-link a::after,
.venture-links a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, #F4E4A7);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venture-link a:hover::after,
.venture-links a:hover::after {
    width: 100%;
}

.venture-link a:hover,
.venture-links a:hover {
    color: #F4E4A7;
    transform: translateX(5px);
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    margin-bottom: 3rem;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: #B8B8B8;
    line-height: 1.7;
}

/* PREMIUM CONTACT FORM */
.contact-form {
    text-align: left;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #D4AF37;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    color: #F5F0E8;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(25, 25, 25, 0.95);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 8px 32px rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Instrument Serif', Georgia, serif;
    line-height: 1.6;
}

/* PREMIUM SUBMIT BUTTON */
.submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4A7 100%);
    color: #1A1A1A;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    border: 1px solid transparent;
}

.submit-btn::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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #F4E4A7 0%, #D4AF37 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    padding: 6rem 0 3rem;
    background: 
        linear-gradient(135deg, rgba(5, 5, 5, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-logo svg {
    width: 220px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-logo:hover svg {
    opacity: 0.8;
}

.footer-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Instrument Serif', Georgia, serif;
}

.footer-info p:last-child {
    color: #999;
    font-style: italic;
    margin-bottom: 0;
}

/* ====================================
   ANIMATIONS & SCROLL EFFECTS
   ==================================== */

[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .logo-container {
        margin-top: 1.5rem;
        margin-bottom: 3.5rem;
        border-radius: 16px;
    }
    
    .main-logo {
        width: clamp(140px, 25vw, 180px);
    }
    
    .ventures-grid {
        gap: 2.5rem;
    }
    
    .venture-card {
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .venture-logo {
        width: 100px;
        height: 100px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero {
        padding: 0 0 1.5rem;
        min-height: 100vh;
        min-height: 100dvh;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 10vh;
    }
    
    .logo-container {
        margin-top: 0;
        margin-bottom: 2rem;
        border-radius: 14px;
        padding: 0.25rem 0.35rem;
    }
    
    .main-logo {
        width: clamp(130px, 28vw, 170px);
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-divider {
        margin: 4rem auto;
        max-width: 400px;
    }
    
    .mission,
    .ventures,
    .contact {
        padding: 6rem 0;
    }
    
    .venture-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .venture-content {
        text-align: center;
    }
    
    .venture-logo {
        width: 120px;
        height: 120px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0 0 1rem;
        min-height: 100vh;
        min-height: 100dvh;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 8vh;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    h1 {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        margin-bottom: 0.5rem;
    }
    
    h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .logo-container {
        margin-top: 0;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        padding: 0.2rem 0.3rem;
        border-width: 1.5px;
    }
    
    .main-logo {
        width: clamp(110px, 35vw, 150px);
        left: -2px;
        top: 1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .scroll-indicator {
        margin-top: 0;
    }
    
    .hero-text {
        margin-bottom: 0;
    }
    
    .mission,
    .ventures,
    .contact {
        padding: 4rem 0;
    }
    
    .venture-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .venture-logo {
        width: 80px;
        height: 80px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-logo svg {
        width: 180px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .ventures-grid {
        max-width: 1300px;
    }
}

/* ====================================
   ACCESSIBILITY & PERFORMANCE
   ==================================== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .bg-particles {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .venture-card {
        border-color: #D4AF37;
        background: rgba(0, 0, 0, 0.95);
    }
    
    .form-group input,
    .form-group textarea {
        border-color: #D4AF37;
        background: rgba(0, 0, 0, 0.95);
    }
}

/* Focus visible for keyboard navigation */
.venture-card:focus-visible,
.submit-btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* Form states */
.form-success,
.form-error {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
    text-align: center;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #10b981;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Print styles */
@media print {
    .bg-particles,
    .scroll-indicator,
    .section-divider {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .venture-card {
        border: 1px solid #ccc;
        background: white;
        break-inside: avoid;
    }
}