* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --marble-white: #f5f5f0;
    --marble-beige: #e8e3d8;
    --marble-gold: #d4af37;
    --marble-brown: #8b7355;
    --marble-dark: #5a4a3a;
    --stone-gray: #6b6b6b;
    --accent-gold: #c9a961;
    --text-dark: #3a3a3a;
    --text-light: #6b6b6b;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: linear-gradient(180deg, #faf9f6 0%, #f5f3ed 100%);
    background-attachment: fixed;
    font-size: 18px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Navigation - Unique Design */
.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.95) 0%, rgba(232, 227, 216, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: var(--shadow-strong);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--marble-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 12px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 70px;
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.nav-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, var(--marble-gold) 0%, var(--accent-gold) 100%);
    color: white;
    transform: scale(1.05);
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

.nav-item:hover .nav-text,
.nav-item.active .nav-text {
    opacity: 1;
}

/* Hero Section - Ancient Style */
.hero-ancient {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(90, 74, 58, 0.9) 0%, rgba(107, 107, 107, 0.85) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-columns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    z-index: 2;
}

.column-decoration {
    width: 80px;
    height: 100vh;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    position: relative;
    flex-shrink: 0;
}

.column-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--marble-gold) 0%,
        transparent 20%,
        transparent 80%,
        var(--marble-gold) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-content {
    flex: 1;
    text-align: center;
    color: white;
    padding: 0 60px;
}

.ancient-title-wrapper {
    margin-bottom: 60px;
}

.ancient-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5),
                 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3); }
    50% { text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.6); }
}

.title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--marble-gold), transparent);
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.ancient-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-scroll-indicator span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 30px;
    opacity: 0.7;
}

/* Main Content */
.main-content {
    position: relative;
    background: var(--marble-white);
}

/* Introduction Section */
.intro-ancient {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--marble-white) 0%, var(--marble-beige) 100%);
    position: relative;
}

.intro-ancient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--marble-gold), transparent);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.section-ornament {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--marble-gold), transparent);
    position: relative;
}

.section-ornament::before,
.section-ornament::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--marble-gold);
    font-size: 12px;
}

.section-ornament::before {
    left: -15px;
}

.section-ornament::after {
    right: -15px;
}

.section-ornament.reverse {
    transform: scaleX(-1);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--marble-dark);
    text-align: center;
    letter-spacing: 4px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 2;
    color: var(--text-light);
}

/* Ancient Cards */
.highlights-ancient {
    padding: 100px 0;
    background: var(--marble-white);
}

.ancient-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.ancient-card {
    position: relative;
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
}

.ancient-card:hover .card-front {
    transform: rotateY(180deg);
}

.ancient-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--marble-dark) 0%, var(--stone-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-back-content {
    text-align: center;
    color: white;
}

.card-back-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--marble-gold);
}

.card-back-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.card-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--marble-gold) 0%, var(--accent-gold) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ancient-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 74, 58, 0.7) 100%);
}

.card-content {
    padding: 30px;
    background: linear-gradient(180deg, var(--marble-beige) 0%, var(--marble-white) 100%);
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--marble-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Info Tablets */
.info-ancient {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--marble-beige) 0%, var(--marble-white) 100%);
}

.info-tablets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.info-tablet {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.9) 0%, rgba(232, 227, 216, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-tablet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--marble-gold), var(--accent-gold));
}

.info-tablet:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.tablet-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.tablet-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--marble-dark);
    margin: 0;
}

.tablet-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.tablet-content strong {
    color: var(--marble-dark);
}

/* Footer */
.ancient-footer {
    background: linear-gradient(135deg, var(--marble-dark) 0%, var(--stone-gray) 100%);
    color: white;
    padding: 50px 0;
    margin-top: 100px;
    position: relative;
}

.ancient-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--marble-gold), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--marble-gold);
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    background: var(--marble-white);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(180deg, var(--marble-beige) 0%, var(--marble-white) 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--marble-gold), transparent);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--marble-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.content-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.5) 0%, rgba(232, 227, 216, 0.3) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--marble-gold);
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--marble-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content-section h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--stone-gray);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 2;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 25px;
    line-height: 2;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.content-image {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    display: block;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

/* Form Styles */
.privacy-form,
.contact-form {
    max-width: 700px;
    margin: 60px auto;
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.95) 0%, rgba(232, 227, 216, 0.95) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.privacy-form h2,
.contact-form h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--marble-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--marble-dark);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--marble-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--marble-gold);
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--marble-gold);
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--marble-gold) 0%, var(--accent-gold) 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ancient-cards {
        grid-template-columns: 1fr;
    }
    
    .column-decoration {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        border-radius: 40px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(245, 245, 240, 0.98) 0%, rgba(232, 227, 216, 0.98) 100%);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 10px;
        min-width: 200px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        min-width: auto;
        padding: 12px 15px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        border-radius: 10px;
        margin-bottom: 5px;
    }
    
    .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .nav-icon {
        font-size: 22px;
        margin-bottom: 0;
    }
    
    .nav-text {
        font-size: 14px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .info-tablets {
        grid-template-columns: 1fr;
    }
    
    .privacy-form,
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ancient-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .ancient-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
}

@media (max-width: 480px) {
    .floating-nav {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .nav-menu {
        min-width: 180px;
        right: -10px;
    }
    
    .nav-item {
        padding: 10px 12px;
    }
    
    .nav-icon {
        font-size: 20px;
    }
    
    .nav-text {
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .content-section {
        padding: 25px 20px;
    }
}
