:root {
    --primary-color: #0f766e;
    --primary-dark: #0c5f58;
    --accent-color: #f59e0b;
    --dark-gray: #1f2937;
    --light-gray: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-gray);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f766e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.95;
    }
}

.float-animation {
    animation: gentleFloat 6s ease-in-out infinite;
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

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

.stagger-1 {
    animation-delay: 0.2s;
}

.stagger-2 {
    animation-delay: 0.4s;
}

.stagger-3 {
    animation-delay: 0.6s;
}

.btn-primary {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.3);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}