/* Hero Branding Styles */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.brand-watermark {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    user-select: none;
    white-space: nowrap;
    animation: brandPulse 8s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% {
        opacity: 0.15;
        transform: translateY(-50%) rotate(-90deg) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translateY(-50%) rotate(-90deg) scale(1.02);
    }
}

/* Enhanced hero content positioning */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Alternative positioning for different screen sizes */
@media (max-width: 1200px) {
    .brand-watermark {
        font-size: 3.5rem;
        letter-spacing: 6px;
        right: 6%;
    }
}

@media (max-width: 992px) {
    .brand-watermark {
        font-size: 3rem;
        letter-spacing: 4px;
        right: 4%;
    }
}

@media (max-width: 768px) {
    .brand-watermark {
        font-size: 2.5rem;
        letter-spacing: 3px;
        right: 2%;
        top: 60%;
    }
}

@media (max-width: 480px) {
    .brand-watermark {
        font-size: 2rem;
        letter-spacing: 2px;
        right: 1%;
        top: 65%;
    }
}

/* Additional elegant branding element */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: brandGlow 6s ease-in-out infinite alternate;
}

@keyframes brandGlow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}
