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

:root {
    /* Military/Historical Color Palette - Opaque Colors */
    --olive-dark: rgba(61, 64, 42, 1);
    --olive-medium: rgba(85, 89, 60, 1);
    --olive-light: rgba(119, 123, 92, 1);
    --khaki: rgba(166, 147, 109, 1);
    --tan: rgba(198, 180, 141, 1);
    --gold: rgba(184, 152, 101, 1);
    --brass: rgba(181, 166, 127, 1);
    --brown-dark: rgba(60, 48, 36, 1);
    --brown-medium: rgba(92, 73, 54, 1);
    --charcoal: rgba(42, 42, 42, 1);
    --black: rgba(20, 20, 20, 1);
    --cream: rgba(232, 224, 207, 1);
    --off-white: rgba(245, 240, 230, 1);
    
    /* Accent Colors */
    --green-accent: rgba(96, 108, 56, 1);
    --red-accent: rgba(139, 69, 55, 1);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Crimson Text', serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--tan);
}

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

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.translate-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--brown-dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.translate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.translate-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.translate-text {
    font-size: 0.85rem;
    font-weight: 700;
}

.translate-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.translate-btn:hover {
    background: var(--brown-medium);
    border-color: var(--brass);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.translate-btn:hover .translate-icon {
    transform: scale(1.1);
}

.translate-btn.active {
    background: var(--gold);
    color: var(--olive-dark);
    border-color: var(--brass);
}

.translate-btn.active .translate-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--brown-dark);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 280px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-header {
    padding: 15px 20px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--brass));
    transition: width 0.3s ease;
    z-index: -1;
}

.lang-option:hover::before {
    width: 100%;
}

.lang-option:hover {
    color: var(--olive-dark);
    transform: translateX(5px);
}

.lang-option.active {
    background: var(--gold);
    color: var(--olive-dark);
    font-weight: 700;
    transform: translateX(0);
}

.lang-option.active::before {
    width: 100%;
}

.lang-option img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    transition: all 0.3s ease;
}

.lang-option:hover img {
    transform: scale(1.1);
    border-color: var(--brass);
}




.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--brown-dark) 100%);
    background-image: 
        url('markV.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.75);
}

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



.hero-logo {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(184, 152, 101, 0.6));
    transition: var(--transition);
}

.hero-logo img:hover {
    filter: drop-shadow(0 0 30px rgba(184, 152, 101, 0.9));
    transform: scale(1.05);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--cream);
}

.hero-description p {
    margin: 10px 0;
}

.flags {
    margin-top: 20px;
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: var(--transition);
    border: 3px solid var(--brass);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.cta-button:hover {
    background: var(--brass);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(60, 60, 50, 0.8) 0%,
        rgba(60, 60, 50, 0.4) 50%,
        rgba(60, 60, 50, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--olive-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--olive-medium);
    margin-bottom: 60px;
    font-style: italic;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.9;
}

.intro-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--olive-dark);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 25px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.tag {
    background: var(--olive-medium);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--olive-dark);
    transition: var(--transition);
}

.tag:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--tan) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(60, 60, 50, 0.8) 0%,
        rgba(60, 60, 50, 0.4) 50%,
        rgba(60, 60, 50, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}
  
.gallery-subsection {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.gallery-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: zoom-in;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 4px solid var(--brown-dark);
    background: var(--charcoal);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--olive-dark);
    color: var(--cream);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(60, 60, 50, 0.8) 0%,
        rgba(60, 60, 50, 0.4) 50%,
        rgba(60, 60, 50, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

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

.pricing-section .section-subtitle {
    color: var(--tan);
}

.pricing-bio {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px 30px;
    background: rgba(60, 48, 36, 0.7);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.character-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 10px 0;
}

.counter-btn {
    width: 35px;
    height: 35px;
    background: var(--brown-dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--gold);
    min-width: 30px;
    text-align: center;
}

.currency-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.currency-btn {
    padding: 12px 40px;
    background: var(--brown-dark);
    color: var(--cream);
    border: 3px solid var(--brass);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.currency-btn:hover {
    background: var(--brown-medium);
    transform: translateY(-2px);
}

.currency-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(60, 48, 36, 0.9);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brass);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    background: rgba(85, 89, 60, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--brass);
    transition: var(--transition);
}

.price-item:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    background: rgba(119, 123, 92, 0.9);
}

.price-item.selected {
    background: var(--green-accent);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(184, 152, 101, 0.5);
}

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
}

.price-modifier {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.price-description {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 15px;
}

.select-btn,
.toggle-btn {
    width: 100%;
    padding: 12px;
    background: var(--brown-dark);
    color: var(--gold);
    border: 2px solid var(--brass);
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.select-btn:hover,
.toggle-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.price-item.selected .select-btn {
    background: var(--gold);
    color: var(--black);
}

.extra-item.selected {
    background: rgba(96, 108, 56, 0.9);
    border-color: var(--gold);
}

.extra-item.selected .toggle-btn {
    background: var(--gold);
    color: var(--black);
}

/* Queue Status Indicator */
.queue-indicator {
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 20px 30px;
    border-radius: 15px;
    border: 3px solid;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.5s ease;
    animation: fadeIn 0.8s ease;
}

.queue-icon {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.queue-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.queue-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queue-message {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Queue Status Colors */
.queue-indicator[data-status="red"] {
    background: rgba(139, 69, 55, 0.2);
    border-color: rgba(139, 69, 55, 1);
}

.queue-indicator[data-status="red"] .queue-label,
.queue-indicator[data-status="red"] .queue-message {
    color: rgba(255, 100, 80, 1);
}

.queue-indicator[data-status="orange"] {
    background: rgba(200, 120, 50, 0.2);
    border-color: rgba(200, 120, 50, 1);
}

.queue-indicator[data-status="orange"] .queue-label,
.queue-indicator[data-status="orange"] .queue-message {
    color: rgba(255, 165, 80, 1);
}

.queue-indicator[data-status="green"] {
    background: rgba(96, 108, 56, 0.2);
    border-color: rgba(96, 108, 56, 1);
}

.queue-indicator[data-status="green"] .queue-label,
.queue-indicator[data-status="green"] .queue-message {
    color: rgba(140, 200, 100, 1);
}

.queue-indicator[data-status="white"] {
    background: rgba(245, 240, 230, 0.2);
    border-color: rgba(245, 240, 230, 1);
}

.queue-indicator[data-status="white"] .queue-label,
.queue-indicator[data-status="white"] .queue-message {
    color: var(--off-white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Calculator */
.price-calculator {
    max-width: 600px;
    margin: 0 auto;
    background: var(--brown-dark);
    border: 4px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.price-calculator h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
}

.calculator-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--brass);
    font-size: 1.2rem;
}

.detail-row span:first-child {
    color: var(--tan);
    font-weight: 600;
}

.detail-row span:last-child {
    color: var(--cream);
}

.total-row {
    border-bottom: none;
    border-top: 3px solid var(--gold);
    margin-top: 10px;
    padding-top: 20px;
    font-size: 1.8rem;
}

.total-row span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
}

.contact-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn:hover {
    background: var(--brass);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.donation-info {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(60, 48, 36, 0.7);
    border: 2px solid var(--brass);
    border-radius: 10px;
}

.donation-info p {
    font-size: 1.2rem;
    color: var(--cream);
    margin: 10px 0;
}

.donation-info strong {
    color: var(--gold);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: var(--cream);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(60, 60, 50, 0.8) 0%,
        rgba(60, 60, 50, 0.4) 50%,
        rgba(60, 60, 50, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

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

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--olive-medium);
    border: 3px solid var(--olive-dark);
    border-radius: 15px;
    text-decoration: none;
    color: var(--cream);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.social-card.twitter {
    background: rgba(42, 42, 42, 1);
    border-color: var(--gold);
}

.social-card.twitter:hover {
    background: rgba(60, 60, 60, 1);
}

.social-card.telegram {
    background: rgba(85, 89, 60, 1);
    border-color: var(--brass);
}

.social-card.telegram:hover {
    background: rgba(96, 108, 56, 1);
}

.social-card.discord {
    background: rgba(92, 73, 54, 1);
    border-color: var(--khaki);
}

.social-card.discord:hover {
    background: rgba(85, 89, 60, 1);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.social-icon svg {
    width: 35px;
    height: 35px;
    color: var(--gold);
}

.social-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.social-info p {
    font-size: 1.2rem;
    color: var(--cream);
}

.nsfw-badge {
    display: inline-block;
    background: var(--red-accent);
    color: var(--cream);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--cream);
    padding: 50px 20px;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(184, 152, 101, 0.3));
}

.footer p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: var(--tan);
}

.footer-note {
    font-style: italic;
    color: var(--brass);
    margin-top: 20px;
}

.footer-credits {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--brown-dark);
    margin: 10% auto;
    padding: 40px;
    border: 4px solid var(--gold);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;
}

.close {
    color: var(--gold);
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--cream);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-content p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    background: var(--olive-medium);
    color: var(--cream);
    text-decoration: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--brass);
}

.modal-btn svg {
    width: 25px;
    height: 25px;
}

.modal-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.modal-btn.twitter {
    background: rgba(42, 42, 42, 1);
}

.modal-btn.telegram {
    background: rgba(85, 89, 60, 1);
}

.modal-btn.discord {
    background: rgba(92, 73, 54, 1);
    cursor: default;
}

/* Image Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(184, 152, 101, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--gold);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3001;
}

.lightbox-close:hover {
    color: var(--cream);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    padding: 15px 30px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: all;
    background: rgba(20, 20, 20, 0.8);
    color: var(--gold);
    border: 3px solid var(--brass);
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: bold;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--brown-dark);
    border-color: var(--gold);
    transform: scale(1.1);
}

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

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet Optimization */
    .container {
        padding: 0 30px;
    }
    
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-logo img {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .navbar .container {
        justify-content: space-between;
    }
    
    .translate-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .translate-text {
        font-size: 0.8rem;
    }
    
    .language-dropdown {
        top: 55px;
        right: -10px;
        min-width: 250px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 70vh;
        padding: 80px 20px 40px;
    }
    
    .hero-logo img {
        height: 120px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 20px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-subsection {
        margin-bottom: 50px;
    }
    
    .subsection-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    /* Pricing Section Mobile */
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-bio {
        font-size: 1rem;
        padding: 15px 20px;
        margin: 20px auto;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-card-title {
        font-size: 1.6rem;
    }
    
    .price-item {
        padding: 20px;
    }
    
    .price-item h4 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .price-description {
        font-size: 0.9rem;
    }
    
    .select-btn,
    .toggle-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .character-counter {
        gap: 12px;
        margin: 12px 0 8px 0;
    }
    
    .counter-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .counter-value {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    /* Price Calculator Mobile */
    .price-calculator {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .price-calculator h3 {
        font-size: 1.8rem;
    }
    
    .detail-row {
        font-size: 1rem;
    }
    
    .total-row {
        font-size: 1.2rem;
    }
    
    #total-price {
        font-size: 1.8rem;
    }
    
    .contact-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 20px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        padding: 25px;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
    }
    
    .social-card p {
        font-size: 1rem;
    }
    
    /* Donation Info Mobile */
    .donation-info {
        font-size: 1rem;
        padding: 20px;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 90%;
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 30px 20px;
    }
    
    .footer-brand-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero {
        min-height: 60vh;
        padding: 70px 15px 30px;
    }
    
    .hero-logo img {
        height: 90px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
    
    /* Sections Small Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* About Section Small Mobile */
    .about-section {
        padding: 50px 15px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    /* Gallery Small Mobile */
    .gallery-section {
        padding: 50px 15px;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    /* Pricing Section Small Mobile */
    .pricing-section {
        padding: 50px 15px;
    }
    
    .pricing-bio {
        font-size: 0.95rem;
        padding: 12px 15px;
        margin: 15px auto;
    }
    
    .currency-selector {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .currency-btn {
        padding: 10px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .pricing-card-title {
        font-size: 1.4rem;
    }
    
    .price-item {
        padding: 15px;
    }
    
    .price-item h4 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .price-modifier {
        font-size: 1rem;
    }
    
    .price-description {
        font-size: 0.85rem;
    }
    
    .select-btn,
    .toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Character Counter Small Mobile */
    .character-counter {
        gap: 10px;
        margin: 10px 0 8px 0;
    }
    
    .counter-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    
    .counter-value {
        font-size: 1.1rem;
        min-width: 22px;
    }
    
    /* Queue Indicator Small Mobile */
    .queue-indicator {
        padding: 12px 15px;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .queue-icon {
        font-size: 1.8rem;
    }
    
    .queue-label {
        font-size: 0.75rem;
    }
    
    .queue-message {
        font-size: 1rem;
    }
    
    /* Price Calculator Small Mobile */
    .price-calculator {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .price-calculator h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .calculator-details {
        gap: 15px;
    }
    
    .detail-row {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .detail-row span:first-child {
        min-width: 100px;
    }
    
    .total-row {
        font-size: 1.1rem;
        padding-top: 15px;
    }
    
    #total-price {
        font-size: 1.6rem;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Contact Section Small Mobile */
    .contact-section {
        padding: 50px 15px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-card h3 {
        font-size: 1.2rem;
    }
    
    .social-card p {
        font-size: 0.95rem;
    }
    
    .nsfw-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* Donation Info Small Mobile */
    .donation-info {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .donation-info p {
        font-size: 0.9rem;
    }
    
    /* Translation Button Small Mobile */
    .translate-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .translate-icon {
        font-size: 1rem;
    }
    
    .translate-text {
        display: none;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 220px;
        max-height: 350px;
    }
    
    .lang-option {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .lang-option img {
        width: 24px;
        height: 24px;
    }
    
    /* Modal Small Mobile */
    .modal-content {
        width: 95%;
        padding: 25px 15px;
        margin: 15px;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
    }
    
    .modal-content p {
        font-size: 0.95rem;
    }
    
    .modal-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .close {
        font-size: 32px;
        top: 10px;
        right: 15px;
    }
    
    /* Lightbox Small Mobile */
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        font-size: 35px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 20px;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 25px 15px;
    }
    
    .footer-brand-logo {
        height: 45px;
    }
    
    .footer-note,
    .footer-credits {
        font-size: 0.9rem;
    }
    
    /* Scroll to Top Button Small Mobile */
    .scroll-to-top {
        width: 45px !important;
        height: 45px !important;
        font-size: 22px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

