/* ================================================
   GOLDEN VAULT - STATIC WEBSITE STYLES
   Optimized for Hostinger cheap hosting plan
   ================================================ */

/* CSS Variables - Golden Vault Brand Colors (Exact from plan) */
:root {
    --color-primary: rgba(250, 197, 28, 1);    /* #FAC51C */
    --color-secondary1: rgba(47, 43, 72, 1);   /* #2F2B48 */
    --color-secondary2: rgba(250, 197, 28, 1); /* #FAC51C */
    --color-secondary3: rgba(62, 62, 62, 1);   /* #3E3E3E */
    --color-secondary4: rgba(255, 255, 255, 1); /* #FFFFFF */
    
    /* Backward compatibility aliases */
    --primary-color: var(--color-primary);
    --secondary-color: var(--color-secondary1);
    --dark-color: var(--color-secondary3);
    --light-color: var(--color-secondary4);
    --text-color: var(--color-secondary3);
    --border-color: #E1E1E1;
    
    /* Typography - Exact from plan */
    --font-primary: 'Ropa Sans', Arial, sans-serif;
    --font-display: 'Do Hyeon', Arial, sans-serif;
    
    /* Spacing */
    --container-max-width: 1100px;
    --section-padding: 80px 0;
    --element-spacing: 30px;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================================================
   TYPOGRAPHY - Exact from plan specifications
   ================================================ */

h1 {
    font-family: 'Do Hyeon', Arial, sans-serif;
    font-size: 72px;
    line-height: 1em;
    color: var(--text-color);
    font-weight: 400;
}

h2 {
    font-family: 'Ropa Sans', Arial, sans-serif;
    font-size: 42px;
    line-height: 1em;
    color: var(--text-color);
    margin-bottom: 20px;
}

h3 {
    font-family: 'Ropa Sans', Arial, sans-serif;
    font-size: 27px;
    line-height: 1em;
    color: var(--text-color);
    margin-bottom: 15px;
}

h4 {
    font-family: 'Do Hyeon', Arial, sans-serif;
    font-size: 18px;
    line-height: 1em;
    color: var(--text-color);
    margin-bottom: 10px;
}

p {
    font-family: 'Ropa Sans', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background-color: #E5B019;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(250, 197, 28, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--light-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* ================================================
   TOP BAR
   ================================================ */

.top-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 45px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 12px;
}

.contact-info a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: var(--light-color);
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* ================================================
   HEADER
   ================================================ */

.main-header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 14px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.cta-button .btn-primary {
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
}

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

section.hero {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--light-color) !important;
    text-align: center !important;
    position: relative !important;
    margin-top: 125px !important;
    background-image: url('https://content.app-sources.com/s/941757670869178121/uploads/Images/oro1-4763241.jpeg') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    background-color: #FAC51C !important;
    filter: brightness(1.3) contrast(1.1) !important;
}

/* Additional fallback hero rule */
.hero, 
html .hero,
body .hero {
    background-image: url('https://content.app-sources.com/s/941757670869178121/uploads/Images/oro1-4763241.jpeg') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: #FAC51C !important;
    filter: brightness(1.2) !important;
}

/* Overlay removed - using gradient directly in background */

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero h1 {
    color: var(--light-color);
    font-size: 72px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.6);
    font-family: var(--font-display);
    line-height: 1em;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.6);
}

.hero .btn-primary {
    margin-top: 30px;
    font-size: 22px;
    padding: 18px 36px;
}

/* ================================================
   COMPANY INTRODUCTION
   ================================================ */

.company-intro {
    padding: var(--section-padding);
    background-color: var(--light-color);
    text-align: center;
}

.brand-name {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 48px;
    margin: 20px 0;
}

.experience {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    margin-top: 30px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services {
    padding: var(--section-padding);
    background-color: #F8F9FA;
}

.services h2 {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 50px;
    font-family: var(--font-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
}

.service-image {
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 8px 0;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.service-content li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ================================================
   INVESTMENT SECTION
   ================================================ */

.investment {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.investment h2 {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 42px;
    line-height: 1em;
}

.investment h3 {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 27px;
    line-height: 1em;
}

.investment-intro {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 30px auto 50px;
    line-height: 1.7;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.investment-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(250, 197, 28, 0.1);
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(250, 197, 28, 0.3);
}

.card-image {
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.investment-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1em;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* ================================================
   VIDEO SECTION
   ================================================ */

.video-section {
    padding: var(--section-padding);
    background-color: #F8F9FA;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1em;
}

.video-section p {
    font-size: 20px;
    margin-bottom: 40px;
    font-style: italic;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================
   VISIT US SECTION
   ================================================ */

.visit-us {
    padding: var(--section-padding);
    background-color: var(--light-color);
    text-align: center;
}

.visit-us h2 {
    margin-bottom: 10px;
}

.visit-us h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visit-us p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    border: none;
}

/* ================================================
   BLOG PREVIEW SECTION
   ================================================ */

.blog-preview {
    padding: var(--section-padding);
    background-color: #F8F9FA;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-card p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

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

.main-footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    color: var(--light-color);
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A4A4A;
    color: #CCCCCC;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

@media screen and (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 48px !important;
    }
    
    h2 {
        font-size: 32px !important;
    }
    
    h3 {
        font-size: 26px !important;
    }
    
    h4 {
        font-size: 22px !important;
    }
    
    p, li {
        font-size: 16px !important;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero section */
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Investment cards */
    .investment-cards {
        grid-template-columns: 1fr;
    }
    
    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Section padding */
    .services,
    .investment,
    .video-section,
    .visit-us,
    .blog-preview,
    .company-intro {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .brand-name {
        font-size: 36px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-content,
    .card-content {
        padding: 20px;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(250, 197, 28, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ================================================
   ADVANCED ANIMATIONS & VISUAL EFFECTS
   ================================================ */

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 197, 28, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(250, 197, 28, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(250, 197, 28, 0);
    }
}

/* Float animation for cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Gradient animation for hero */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation classes for intersection observer */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Button pulse effect on load */
.btn-primary.animate-pulse {
    animation: pulse 2s infinite;
}

/* Floating effect for special elements */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.enhanced-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enhanced-hover:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #FDD835);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

/* Glowing border effect */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 197, 28, 0.4), transparent);
    transition: left 0.5s;
}

.glow-border:hover::before {
    left: 100%;
}

/* Parallax effect class */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* Stagger animation delays */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }

/* Enhanced shadow effects */
.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shadow-golden {
    box-shadow: 0 10px 30px rgba(250, 197, 28, 0.2);
}

.shadow-golden:hover {
    box-shadow: 0 15px 40px rgba(250, 197, 28, 0.3);
}

/* ================================================
   FINAL HERO OVERRIDE - MUST BE BRIGHT!
   ================================================ */
section.hero[style] {
    background-image: url('https://content.app-sources.com/s/941757670869178121/uploads/Images/oro1-4763241.jpeg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    filter: brightness(1.5) contrast(1.3) saturate(1.2) !important;
    background-color: #FAC51C !important;
}