/* Aligning the content in the center with flexbox */
body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1em;
    background-color: #fce4ec; /* Light pink background */
}

/* Font for titles */
.playfair-display- {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

/* Container for layout */
.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 80%;
    max-width: 1200px;
}

/* Header style */
.header {
    grid-column: span 4;
    background-color: #f8bbd0; /* Light pink */
    padding: 20px;
    text-align: center;
}

/* Main navigation layout */
.main-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    padding: 0;
    list-style: none;
}

.full-row {
    grid-column: span 4;
    background-color: #f48fb1; 
    padding: 20px;
}

/* Title row background */
.title-row {
    grid-column: span 4;
    background-color: rgb(245, 245, 105); 
    text-align: center;
}

.two-column-1, .two-column-2 {
    grid-column: span 2;
    background-color: #f8bbd0; 
    padding: 20px;
}

.four-column {
    grid-column: span 1;
    background-color: #f48fb1; 
    padding: 20px;
}

/* Footer */
.footer {
    grid-column: span 4;
    background-color: #f0c4d9; 
    padding: 20px;
    text-align: center;
}

/* Social media icons layout */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Section links (buttons) */
.section-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.section-btn {
    margin: 0 15px;
    padding: 15px 20px;
    background-color: #e1bee7; /* Light purple */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.section-btn:hover {
    background-color: #d1a6e1; /* Darker purple on hover */
}
