/* Basic Reset */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background-color: #ffffff;
}

/* Hero Section with Background Image */
.hero-section {
    /* Using the local image for the background */
    background-image: url('Assets/press.jpeg');
    background-size: cover;
    background-position: center;
    height: 70vh; /* Viewport height for the hero section */
    color: white;
    padding: 4rem; /* Padding for the text */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Text styling within the hero section */
.hero-section h1 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
}

/* Press Title Section */
.press-section {
    background-color: #ffffff;
    padding: 4rem; /* Matching padding for consistency */
}

.press-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 6rem; /* Large font size for impact */
    font-weight: 700;
    color: #000000;
    line-height: 1; /* Adjust line height to keep it tight */
}

/* Articles Section */
.articles-section {
    padding: 2rem 4rem 4rem; /* Top, horizontal, bottom padding */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem; /* Spacing between the article cards */
    background-color: #f3f4f6; /* Light grey background */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.article-card {
    text-align: center;
    flex-basis: 300px; /* Base width for each card */
    flex-grow: 1;
    max-width: 350px;
}

.article-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem; /* Space between image and caption */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 4px; /* Slightly rounded corners */
}

.article-card p {
    font-family: 'Inter', sans-serif;
    border: 1px solid #d1d5db; /* Light grey border */
    padding: 0.75rem 1.5rem;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 4px;
    color: #4b5563; /* Grey text color */
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
        height: 50vh;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 0.875rem;
    }

    .press-section {
        padding: 2rem;
    }

    .press-section h2 {
        font-size: 4rem;
    }
    
    .articles-section {
        padding: 2rem;
        gap: 2rem;
    }

    .article-card {
        flex-basis: 100%; /* Full width on smaller screens */
        max-width: 400px; /* Limit max width for a better look */
    }
}


/* Spotlight Section */
.spotlight-section {
    background-color: #000000;
    padding: 5rem 2rem; /* Generous padding */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.spotlight-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem; /* Space between the two images */
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
}

.spotlight-images img {
    max-width: 45%; /* Allows two images to fit side-by-side with a gap */
    height: auto;
    flex-grow: 1;
}

.spotlight-link {
    font-family: 'Inter', sans-serif;
    border: 1px solid #ffffff;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    background-color: transparent;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    margin-top: 2rem; /* Space between image and link */
    transition: background-color 0.3s, color 0.3s;
}

.spotlight-link:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive adjustments for the spotlight section */
@media (max-width: 768px) {
    .spotlight-section {
        padding: 3rem 1rem;
    }

    .spotlight-images img {
        max-width: 100%; /* Stack images on small screens */
    }
}

/* Articles Section - This style is reused by the Hospitality section */
.articles-section {
    padding: 2rem 4rem 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    background-color: #f3f4f6; /* Light grey background */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

/* Individual article card styling */
.article-card {
    text-align: center;
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 350px;
}

.article-card img {
    width: 100%;
    height: auto;
    display: block;
    /* The final section's images don't have a margin-bottom because there's a shared caption */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Styling for the caption that spans the full width below the articles */
.full-width-caption {
    flex-basis: 100%; /* Ensures it takes the full width of the container */
    text-align: center;
    margin-top: 1rem; /* Adds some space above the caption */
}

.full-width-caption p {
    font-family: 'Inter', sans-serif;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 4px;
    color: #4b5563;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .articles-section {
        padding: 2rem;
        gap: 2rem;
    }

    .article-card {
        flex-basis: 100%; /* Each card takes full width on smaller screens */
        max-width: 400px;
    }
}



/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
        height: 50vh;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 0.875rem;
    }

    .press-section {
        padding: 2rem;
    }

    .press-section h2 {
        font-size: 4rem;
    }
}

