
:root {
    --bg-light: #fdfcf8;
    --bg-secondary: #f0f4f8;
    --text-primary: #2c2c2c;
    --text-accent: #1b263b;
    --text-grey: #555555;

    --vg-blue: #1b263b;
    --vg-yellow: #ffb703;
    --white: #ffffff;

    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
    --font-nav: "Cinzel", sans-serif;
    --font-subtitle: "Bebas Neue", sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.3s ease;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-secondary);
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    padding: 10px 0 0 0;
    position:  fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

.logo a {
    font-family: var(--font-nav);
    font-size: 26px;
    font-weight: 600;
    color: var(--text-accent);
    letter-spacing: 3px;
}

.nav-links {
    display: flex; 
    gap: 40px;
}

.nav-links li a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-accent);
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}
.nav-links li a:hover {
    color: var(--text-accent);
}

 /* ---  HERO SECTION --- */
 #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
 }

 #hero::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 70%; height: 100%;
 }

 #hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 .hero-content {
    flex: 1;
    padding-right: 50px;
 }

 .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    color: var(--text-accent);
    margin-bottom: 24px;
    font-weight: 600;
 }

 .hero-content .subtitle {
    font-family: var(--font-subtitle);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 10px;
    display: block;
 }

 .hero-content p {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: #444;
    border-left: 3px solid var(--text-accent);
    padding-left: 25px;
    margin-bottom: 30px;
    line-height: 1.6;
 }

.cta-link {
        border-bottom: 1px solid var(--text-accent); 
        padding-bottom: 5px; 
        font-size: 13px; 
        text-transform: uppercase; 
        letter-spacing: 2px;
        font-weight: 600;
        font-family: var(--font-body);
      }

 .hero-image {
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
 }

 .hero-image img {
    width: 100%;
    border-radius: 10px;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-15px 15px 25px rgba(27, 38, 59, 0.15));
    margin: 20px 0;
 }

  /* ---  BIOGRAPHY SECTION --- */
  #biography {
    background: var(--vg-blue);
    color: var(--white);
    padding: 80px 0;
  }

 #biography .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
 }

 .bio-image {
    flex: 1;
 }

 .bio-image img {
    width: 100%;
    max-width: 440px;
    padding: 10px;
    border: 2px solid var(--white);
    box-shadow: 20px 20px 0 rgba(0,0,0,0.2);
 }

 .bio-text {
    flex: 1;
 }

.bio-text h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--vg-yellow);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bio-text h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.bio-text p {
    font-size: 16px;
    color: #e0e0e0;
    text-align: justify;
    font-weight: 300;
}

/* --- TIMELINE SECTION --- */

#timeline {
    padding: 80px 0;
    background: var(--bg-secondary);
}

#timeline h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-accent);
    margin-bottom: 60px;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    gap: 50px;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-image {
    width: 45%;
    position: relative;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: sepia(15%) contrast(1.05);
    box-shadow: 15px 15px 0px rgba(27, 38, 59, 0.1);
}

.timeline-image::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: 100%;
    z-index: -1;
}

.timeline-content {
    width: 55%;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-accent);
    font-style: italic;
}

/* --- QUOTE SECTION --- */
#quote {
    background: linear-gradient(rgba(27, 38, 59, 0.85), rgba(27, 38, 59, 0.85)), 
    url("https://i.pinimg.com/1200x/89/03/1f/89031f2b625bf4f7b70f934906959aec.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0;
    color: var(--white);
    text-align: center;
}

#quote .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#quote .quote-box {
    width: 80%;
    position: relative;
}

#quote h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.4;
    font-weight: 400;
}

#quote h2 span {
    font-weight: 600;
    font-style: italic;
    color: var(--vg-yellow);
    display: block;
    margin-top: 10px;
}

#quote p {
    font-family: var(--font-nav);
    font-size: 18px;
    margin-top: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#quote .quote-icon {
    font-size: 80px;
    color: var(--vg-yellow);
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    opacity: 0.8;
}

/* ---  GALLERY SECTION --- */
#gallery {
    padding: 100px 0;
    background: var(--bg-secondary);
}

#gallery h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-accent);
}

#gallery .sub-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 16px;
    font-family: var(--font-heading);
    font-style: italic;
    color: #777;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.art-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-radius: 2px;
    overflow: hidden;
}

.art-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.art-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.art-info { 
    padding: 30px 25px;
    text-align: center;
}

.art-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.art-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.btn-primary {
    display: block;
    width: fit-content;
    margin: 70px auto 0;
    padding: 18px 45px;
    border: 1px solid var(--text-accent);
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: var(--text-accent);
    color: var(--white);
}

/* --- FOOTER --- */
footer {
    background: var(--vg-blue);
    color: var(--white);
    padding: 90px 0 30px;
    text-align: center;
}

footer h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-style: italic;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.footer-links a {
    font-size: 13px;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 12px;
    color: #555;
    font-family: var(--font-body);
}

@media (max-width: 1024px) {
    #hero .container { flex-direction: column-reverse; padding-top: 50px; text-align: center; }
        .hero-content, .hero-image-wrapper { width: 100%; padding: 0; }
        .hero-content h1 { font-size: 70px; margin-top: 30px; }
        .hero-image-wrapper { justify-content: center; }
        .hero-content p { border: none; padding: 0; border-top: 2px solid var(--text-accent); padding-top: 20px; }
        
        #biography .container { flex-direction: column; }
        .bio-image img { width: 100%; }
        
        .timeline-item { flex-direction: column !important; gap: 30px; }
        .timeline-image, .timeline-content { font-size: 28px;  width: 100%; }
        
        .navbar .nav-links { display: none; }
        #quote h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center; 
    }
    .nav-links {
        display: none; 
    }

    #hero {
        padding-top: 100px;
        text-align: center;
    }
   
}
