/* Global Styles */
:root {
    --primary-dark: #000000;
    --secondary-dark: #1a1a1a;
    --accent-gray: #333333;
    --text-color: #f8f9fa;
    --font-titles: 'Playfair Display', serif;
    --font-text: 'Great Vibes', cursive;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-color);
    overflow-x: hidden;
}

.text-playfair {
    font-family: var(--font-titles);
}

.text-great-vibes {
    font-family: var(--font-text);
}

/* Navbar */
.custom-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link {
    font-family: var(--font-titles);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin: 0 1rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/background.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: zoomIn 10s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-section .container {
    z-index: 1;
}

/* Buttons */
.btn-outline-light {
    border-width: 2px;
    border-radius: 0;
    font-family: var(--font-titles);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
}

.footer .text-playfair {
    letter-spacing: 1px;
}

.footer .contact-info a {
    transition: color 0.3s ease;
}

.footer .contact-info a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem;
    }
}