/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-red: #7D0000;
    --black: #000000;
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4E4BC;
    --white: #FFFFFF;
    --gray: #333333;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('sitebackground.png') center center/cover no-repeat;
    filter: blur(2px) brightness(0.6);
    transform: scale(1.1);
}

/* Add overlay for better text readability */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(125, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gold);
    line-height: 1.6;
}

/* Georgian hero tagline specific styling */
[lang="ka"] .hero-tagline,
.georgian-font .hero-tagline {
    line-height: 2.2;
    margin-bottom: 50px;
}

.cta-button {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

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

/* Story Section */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--black) 100%);
    color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-img-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-logo-img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.story-img-placeholder:hover .story-logo-img {
    transform: scale(1.05);
}

.story-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light-gold);
    font-weight: 400;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: linear-gradient(145deg, var(--deep-red) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-cta {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.product-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* Symbolism Section */
.symbolism {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--black) 100%);
    color: var(--white);
}

.symbolism .section-title {
    color: var(--gold);
}

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

.symbol-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.symbol-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.symbol-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.georgian-cross-symbol {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
}

.georgian-cross-symbol::before {
    content: '\271A'; /* ✚ Unicode cross */
    color: var(--gold);
}

.grape-vine-symbol {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
}

.grape-vine-symbol::before { display: none; }

.crown-symbol {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
}

.crown-symbol::before { display: none; }

.symbol-svg svg {
    display: block;
    margin: 0 auto;
    width: 44px;
    height: 44px;
}
.symbol-svg svg * {
    fill: var(--gold) !important;
}

.symbol-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.symbol-description {
    font-size: 1rem;
    color: var(--light-gold);
    line-height: 1.6;
}

/* Custom Order Section */
.custom-order {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--black) 100%);
    color: var(--white);
}

.custom-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gold);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    transition: border-color 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
    color: var(--light-gold);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-copyright {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    color: var(--light-gold);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 50px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .custom-form {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .language-toggle {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Custom Georgian Fonts */
@font-face {
    font-family: 'Mkhatvrulia';
    src: url('mkhatvrulia.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMArchium';
    src: url('dm-archium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Test Georgian font loading */
.georgian-test {
    font-family: 'DMArchium', 'Mkhatvrulia', 'Noto Sans Georgian', 'Cormorant Garamond', serif;
}

/* Georgian Font Support - Only for main titles and headings */
[lang="ka"] h1,
[lang="ka"] h2,
[lang="ka"] h3,
[lang="ka"] .hero-title,
[lang="ka"] .hero-tagline,
[lang="ka"] .section-title,
[lang="ka"] .product-title,
[lang="ka"] .symbol-title,
.georgian-font h1,
.georgian-font h2,
.georgian-font h3,
.georgian-font .hero-title,
.georgian-font .hero-tagline,
.georgian-font .section-title,
.georgian-font .product-title,
.georgian-font .symbol-title {
    font-family: 'DMArchium', 'Mkhatvrulia', 'Noto Sans Georgian', 'Cormorant Garamond', serif !important;
    font-size: 1em;
}

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

/* Fade-in Animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
} 