@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-style: italic;
  font-weight: 300;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #d4d4d4;
    font-family: 'Cormorant Garamond', serif;
    overflow: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Geometric background pattern */
.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.04;
}

.geo-circle {
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.geo-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-circle:nth-child(2) {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.geo-circle:nth-child(3) {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.04;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Diamond shapes in corners */
.diamond-ornament {
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    animation: rotateDiamond 10s linear infinite;
}

.diamond-ornament:nth-child(1) {
    top: 60px;
    left: 60px;
}

.diamond-ornament:nth-child(2) {
    top: 60px;
    right: 60px;
    animation-delay: 2.5s;
}

.diamond-ornament:nth-child(3) {
    bottom: 60px;
    left: 60px;
    animation-delay: 5s;
}

.diamond-ornament:nth-child(4) {
    bottom: 60px;
    right: 60px;
    animation-delay: 7.5s;
}

@keyframes rotateDiamond {
    0%, 100% { transform: rotate(45deg); }
    50% { transform: rotate(135deg); }
}

/* Vertical dividers */
.vertical-divider {
    position: absolute;
    width: 1px;
    height: 60%;
    top: 20%;
    background: linear-gradient(to bottom, transparent, rgba(100, 80, 90, 0.3), transparent);
}

.vertical-divider:nth-child(1) {
    left: 25%;
    animation: fadeInOut 6s ease-in-out infinite;
}

.vertical-divider:nth-child(2) {
    right: 25%;
    animation: fadeInOut 6s ease-in-out infinite 3s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Atmospheric fog */
.fog {
    position: absolute;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.9) 80%);
    animation: fogMove 20s ease-in-out infinite;
}

@keyframes fogMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}

/* Content container */
.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 200rem;
    padding: 0 4rem;
}

/* Top ornamental symbol */
.top-symbol {
    font-size: 28px;
    color: rgba(120, 100, 110, 0.6);
    margin-bottom: 35px;
    opacity: 0;
    animation: symbolAppear 1.5s ease forwards 0.2s;
    filter: drop-shadow(0 0 15px rgba(120, 100, 110, 0.4));
}

@keyframes symbolAppear {
    from {
        opacity: 0;
        transform: translateY(-30px) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Pre-title */
.pre-title {
    font-size: 10px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 25px;
    opacity: 0;
    animation: textFadeIn 1.2s ease forwards 0.5s;
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main title */
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(60px, 10vw, 110px);
    font-weight: 700;
    letter-spacing: 18px;
    margin-bottom: 20px;
    opacity: 0;
    animation: titleReveal 1.5s ease forwards 0.8s;
    color: #fff;
    text-shadow: 
        0 0 40px rgba(120, 100, 110, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 30px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 18px;
    }
}

/* Horizontal accent line */
.accent-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(120, 100, 110, 0.8), transparent);
    margin: 35px auto;
    position: relative;
    opacity: 0;
    animation: lineExpand 1.5s ease forwards 1.1s;
}

.accent-line::before,
.accent-line::after {
    content: '◆';
    position: absolute;
    top: -7px;
    font-size: 14px;
    color: rgba(120, 100, 110, 0.8);
}

.accent-line::before {
    left: -20px;
}

.accent-line::after {
    right: -20px;
}

@keyframes lineExpand {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 200px;
    }
}

/* Subtitle/Description */
.description {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 2;
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
    opacity: 0;
    animation: textFadeIn 1.2s ease forwards 1.4s;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

/* Bottom symbol */
.bottom-symbol {
    font-size: 18px;
    color: rgba(120, 100, 110, 0.5);
    margin-top: 50px;
    opacity: 0;
    animation: symbolAppear 1.5s ease forwards 1.7s;
    filter: drop-shadow(0 0 10px rgba(120, 100, 110, 0.3));
}

/* Floating dust particles */
.dust-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dust {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(120, 100, 110, 0.3);
    border-radius: 50%;
    animation: dustFloat 20s infinite linear;
    box-shadow: 0 0 5px rgba(120, 100, 110, 0.3);
}

.dust:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 18s; }
.dust:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 22s; }
.dust:nth-child(3) { left: 35%; animation-delay: 6s; animation-duration: 20s; }
.dust:nth-child(4) { left: 45%; animation-delay: 2s; animation-duration: 24s; }
.dust:nth-child(5) { left: 55%; animation-delay: 5s; animation-duration: 19s; }
.dust:nth-child(6) { left: 65%; animation-delay: 8s; animation-duration: 21s; }
.dust:nth-child(7) { left: 75%; animation-delay: 4s; animation-duration: 23s; }
.dust:nth-child(8) { left: 85%; animation-delay: 7s; animation-duration: 17s; }

@keyframes dustFloat {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Ink drops falling slowly */
.ink-drop {
    position: absolute;
    top: -10%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, rgba(100, 80, 90, 0.4));
    animation: inkFall 8s ease-in infinite;
}

.ink-drop:nth-child(1) { left: 18%; animation-delay: 0s; }
.ink-drop:nth-child(2) { left: 45%; animation-delay: 3s; }
.ink-drop:nth-child(3) { left: 72%; animation-delay: 6s; }
.ink-drop:nth-child(4) { left: 88%; animation-delay: 2s; }

@keyframes inkFall {
    0% {
        height: 0;
        top: -10%;
        opacity: 0;
    }
    20% {
        height: 150px;
        opacity: 0.6;
    }
    100% {
        top: 110%;
        height: 150px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 50px;
        letter-spacing: 10px;
    }
    
    .diamond-ornament {
        width: 12px;
        height: 12px;
    }
    
    .diamond-ornament:nth-child(1),
    .diamond-ornament:nth-child(2),
    .diamond-ornament:nth-child(3),
    .diamond-ornament:nth-child(4) {
        top: 30px;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .diamond-ornament:nth-child(1) { top: 30px; left: 30px; }
    .diamond-ornament:nth-child(2) { top: 30px; right: 30px; }
    .diamond-ornament:nth-child(3) { bottom: 30px; left: 30px; }
    .diamond-ornament:nth-child(4) { bottom: 30px; right: 30px; }
}