@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Hero Section Background */
#hero-section {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.5); /* Overlay with Carbon Black at 50% opacity */
    z-index: 1;
}

/* Gallery styles */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Competition Section Background */
#competition {
    background-image: url('images/Tartget-girl.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#competition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.7); /* Overlay with Carbon Black at 70% opacity */
    z-index: 1;
}
