/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&family=Poppins:wght@300;400;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #e0e0e0;
}

h1, h2 {
    font-family: 'Dancing Script', cursive; 
    color: #f9d342;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6); 
}

/* Hero Section with Glassmorphism */
.hero-section {
    background-image: url('../img/other_img/ourstory-hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 250px 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive; /* Cursive font for header */
    font-size: 3.5rem;
    padding: 15px;
    max-width: 70%;
    margin: 0 auto;
    border-radius: 10px;
}

/* Hero Section <p> Styling */
.hero-content p {
    font-family: 'Dancing Script', cursive; /* Apply cursive font */
    font-size: 1.2rem;
    padding: 10px;
    max-width: 50%;
    margin: 20px auto;
    border-radius: 8px;
    color: #e0e0e0;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent background */
}

/* About Section */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background: rgba(40, 40, 40, 0.75); 
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 30px 10px;
    backdrop-filter: blur(10px);
}

.about-section h2 {
    font-family: 'Dancing Script', cursive; /* Cursive font for header */
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f9d342;
}

/* About Section <p> Styling */
.about-section p {
    font-family: 'Dancing Script', cursive; /* Apply cursive font */
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0 auto 25px;
    max-width: 800px;
    text-align: justify; /* Adjusts alignment for better readability */
}

/* Gallery Section */
.gallery-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #282828, #1a1a1a);
    color: #f9d342;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 30px 10px;
}

.gallery-section h2 {
    font-family: 'Dancing Script', cursive; /* Cursive font for header */
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f9d342;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 30px 0;
    text-align: center;
    font-size: 1rem;
}

.social-links img {
    width: 35px;
    height: 35px;
    margin: 0 15px;
    transition: transform 0.2s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}
