@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f0eb;
    background-color: #0a0a0a;
}

/* Header */
header {
    background-color: #0a0a0a;
    padding: 1rem;
}

/* Hero */
#hero {
    background-image: linear-gradient(to bottom, #0a0a0a, #c9a96e);
    background-size: 100% 300px;
    background-position: 0% 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f5f0eb;
}

#hero h1 {
    font-size: 3rem;
}

/* Portfolio */
#portfolio {
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.card {
    background-color: #0a0a0a;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Services */
#services {
    padding: 2rem;
}

/* About */
#about {
    padding: 2rem;
}

/* Contact */
#contact {
    padding: 2rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 1rem;
}

/* Social Links */
.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links li a {
    color: #c9a96e;
}

/* Scroll Reveal */
.scroll-reveal {
    animation: scroll-reveal 0.5s ease-in-out forwards;
}

@keyframes scroll-reveal {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Smooth Scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
}

@media only screen and (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* SVG Icons */
#corporate-icon {
    fill: #c9a96e;
}

#brand-icon {
    fill: #c9a96e;
}

#event-icon {
    fill: #c9a96e;
}

#facebook-icon {
    fill: #c9a96e;
}

#instagram-icon {
    fill: #c9a96e;
}

#twitter-icon {
    fill: #c9a96e;
}

