/* Global Styles */
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f7f7f7 ;
    color: #222;
    scroll-behavior: smooth;
}



:root {
    --main_color: #32404c;
    --accent_color: #536a7f;
    --light_gray: #f7f7f7;
    --text_dark: #1e1e1e;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url(AdamTitn.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media(max-width: 767px) {
    .hero {
        background-image: url(AdamTitn\ mopail.jpg);
    }
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--accent_color);
}

.hero .nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero .btn {
    background: var(--main_color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn:hover {
    background: var(--accent_color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--main_color);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Section Animation */
section.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

section {
    opacity: 0;
    transform: translateY(50px);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--main_color);
}

.container p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text_dark);
}

.container a {
    color: var(--main_color);
    text-decoration: none;
    font-weight: bold;
}

.container a:hover {
    color: var(--accent_color);
    text-decoration: underline;
}

