@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(45deg, rgb(8, 12, 24) 50%, rgb(23, 29, 45) 65%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

/* Background lines */
.bg-line {
    z-index: 1;
}

.vertical-line {
    position: absolute;
    width: 2px;
    height: 80%; /* or a fixed px value, but not 100vh */
    left: 20px;
    top: 0;
    background: linear-gradient(180deg, transparent, #b8860b, transparent);
    animation: glowVertical 3s ease-in-out infinite alternate;
}

@keyframes glowVertical {
    0% { box-shadow: 0 0 5px #b8860b, 0 0 10px #b8860b; }
    100% { box-shadow: 0 0 10px #b8860b, 0 0 20px #b8860b; }
}

@keyframes glowHorizontal {
    0% { box-shadow: 0 0 5px #b8860b, 0 0 10px #b8860b; }
    100% { box-shadow: 0 0 10px #b8860b, 0 0 20px #b8860b; }
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    transition: padding 1.2s cubic-bezier(.4,2,.6,1);
    padding-top: 0;
}

.main-content.quote-active {
    justify-content: flex-start;
    padding-top: 2.5rem;
    min-height: 60vh;
}

.tagline,
.tagline-caption,
.leadership {
    transition: transform 1.2s cubic-bezier(.4,2,.6,1), opacity 1.2s cubic-bezier(.4,2,.6,1);
}

.tagline.quote-pushed,
.tagline-caption.quote-pushed,
.leadership.quote-pushed {
    transform: translateY(-60px);
}

.quote-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(.4,2,.6,1), transform 1.2s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}

.quote-section.quote-float-up {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
}

/* Logo styles */
.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1.5s ease-out;
}

.logo {
    display: inline-block;
    position: relative;
}

.logo-premium {
    width: auto;
    height: auto;
    min-width: 700px;
    padding: 0;
    position: relative;
    animation: logoFloat 6s ease-in-out infinite;
    margin-bottom: 1.25rem;
    display: inline-block;
    text-align: center;
}

.logo-wrapper {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.logo-wrapper:hover::after {
    opacity: 1;
    animation: goldGlare 0.8s ease-in-out;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(191, 160, 70, 0.2) 20%, 
        rgba(191, 160, 70, 0.5) 50%, 
        rgba(191, 160, 70, 0.2) 80%, 
        transparent 100%);
    pointer-events: none;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.logo-image {
    width: 75%;
    height: auto;
    max-width: 600px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo-wrapper:hover .logo-image {
    transform: scale(1.02);
}



.logo-content {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 #fff;
}

.logo-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff 40%, #bfa046 60%, transparent);
    margin: 0.4rem auto 0.3rem auto;
    opacity: 0.85;
    border-radius: 1px;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #e6e6e6;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-top: 0.1rem;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes goldGlare {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes borderGlow {
    0% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); }
}

/* Company name */
.company-name {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    animation: fadeInUp 1.5s ease-out 0.3s both;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Tagline */
.tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.5s ease-out 0.6s both;
    background: linear-gradient(45deg, #ffffff, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.92rem;
    color: #bbbbbb;
    margin: 0.7rem auto 2.2rem auto;
    max-width: 600px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.01em;
    opacity: 0.85;
    transition: transform 1.2s cubic-bezier(.4,2,.6,1), opacity 1.2s cubic-bezier(.4,2,.6,1);
}

/* Leadership section */
.leadership {
    margin-bottom: 2.2rem;
    animation: fadeInUp 1.5s ease-out 0.9s both;
}

.director {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #cccccc;
}

.director a {
    color: #bfa046;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-weight: 500;
}

.director a:hover {
    color: #fffbe6;
    text-shadow: 0 0 8px rgba(191, 160, 70, 0.4);
}

/* Quote section */
.quote {
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    letter-spacing: 0.02em;
    font-style: normal;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: #ffffff;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.2;
}

.quote::after {
    content: '"';
    font-size: 4rem;
    color: #ffffff;
    position: absolute;
    bottom: -40px;
    right: -30px;
    opacity: 0.2;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

/* Contact section */
.contact-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 1.5s both;
}

.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border: 2px solid #333333;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.contact-button:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transform: translateY(-2px) scale(1.04);
}

.contact-text {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.04em;
}

.contact-subtitle {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    color: #cccccc;
    opacity: 0.85;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    position: relative;
    padding-top: 1rem;
    z-index: 2;
    animation: fadeIn 2s ease-out 2s both;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #bfa046 18%, #fffbe6 50%, #bfa046 82%, transparent 100%);
    box-shadow: 0 0 12px 2px rgba(191,160,70,0.10);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 6rem;
}

@media (max-width: 900px) {
    .footer-content {
        gap: 2rem;
    }
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    margin: 0.2rem 0;
}

.contact-info a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    color: #ffffff;
}



/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo-premium {
        width: auto;
        height: auto;
        min-width: 500px;
        padding: 25px;
    }
    
    .logo-image {
        width: 75%;
        height: auto;
        max-width: 400px;
    }
    
    .logo-main {
        font-size: 2.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-divider {
        width: 60px;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .quote::before,
    .quote::after {
        font-size: 3rem;
    }
    
    .contact-text {
        font-size: 1.2rem;
    }
    
    .contact-button {
        padding: 0.75rem 2rem;
    }
    
    .vertical-line {
        left: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-right {
        order: -1;
    }
    
    .footer-left {
        order: 1;
    }
}

@media (max-width: 480px) {
    .logo-premium {
        width: auto;
        height: auto;
        min-width: 400px;
        padding: 20px;
    }
    
    .logo-image {
        width: 75%;
        height: auto;
        max-width: 300px;
    }
    
    .logo-main {
        font-size: 2.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .logo-divider {
        width: 50px;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .quote {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .epc-link {
        padding: 0.75rem 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: rgba(184, 134, 11, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(184, 134, 11, 0.3);
    color: #ffffff;
} 