/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}


body {
    margin: 0;
    height: 100vh; /* makes body take full viewport height */
    background-image: url("images/logo.png"); /* your image */
    background-size: cover;   /* makes the image cover the entire area */
    background-repeat: no-repeat; /* prevents tiling */
    background-position: center ;  /* centers the image */
}
/* ---------- TOP NAVIGATION ---------- */
.top-nav {
    width: 100%;
    background: #f9eec2;
    padding: 20px px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 325px;
    font-size: 26px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.top-nav a {
    text-decoration: none;
    color: #3a2f2f;
}

/* ---------- HERO SECTION ---------- */
.hero {
    margin-top: 120px; /* space for fixed navbar */
    position: relative;
    width: 100%;
    height: 650px; /* desktop scaling */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 370px; /* desktop scaling */
    z-index: 5;
}

/* ---------- CATEGORY BUTTONS ---------- */
.category-bar {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 200px;
}

.cat-btn {
    background: #f9eec2;
    padding: 28px 100px;
    border-radius: 40px;
    font-size: 34px;
    text-align: center;
    color: #3a2f2f;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ---------- GALLERY PREVIEW ---------- */
.gallery-preview {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 435px;
    padding-bottom: 100px;
}

.gallery-preview img {
    width: 260px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}
/* Basic button style */
button {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease; /* smooth transition for hover effect */
}

/* Hover effect */
button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* drop shadow */
    transform: translateY(-2px); /* optional: lifts button slightly */
}
.button-header {
  width: 80%;                 /* adjusts the button width */
  margin: 60px auto;          /* centers the button on the page */
  padding: 60px 40px;         /* button padding */
  
  background: #F8E9C2;        /* creamy yellow color like your button */
  border-radius: 40px;        /* smooth rounded edges */
  
  font-size: 4rem;            /* large text */
  font-weight: 700;
  font-style: italic;
  color: white;               /* white text */
  text-align: center;         /* center text horizontally */
  line-height: 1.1;
}
/* Full-width header with swirl background */
.art-header {
  width: 100%;
  height: 250px; /* adjust to match your screenshot */
  background-image: url('swirl-header.jpg'); /* use your swirl image */
  background-size: cover;
  background-position: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The cream-colored rounded rectangle behind the text */
.art-title-box {
  background: #F8EFCB;        /* cream color like your screenshot */
  color: white;
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;

  padding: 30px 80px;
  border-radius: 40px;        /* very rounded corners */
  
  text-align: center;
  display: inline-block;
  
  box-shadow: 0px 6px 16px rgba(0,0,0,0.15); /* optional */
}
/* ----------------------------------------------------- */
/* PAGE BACKGROUND + RESET */
/* ----------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* ----------------------------------------------------- */
/* HEADER (you already have this part working) */
/* ----------------------------------------------------- */
.button-header {
  width: fit-content;      /* Shrinks the button to match the text */
  margin-top: 120px;       /* Move it down (adjust as needed) */
  margin-left: 40px;       /* Moves it to the left */
  padding: 50px 40px;
  background: #F8E9C2;
  border-radius: 40px;
  text-align: left;        /* Make the text align left inside the button */
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: white;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}


body {
    margin: 0;
    padding: 0;
    background-color: #111;
    font-family: Arial, sans-serif;
    color: white;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.title {
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Gallery Layout */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 100px;                     /* spacing between images */
    width: 90%;                    /* keeps everything inside the screen */
    margin: 1000px auto;             /* centers gallery & adds top spacing */
}

/* Image Styling */
.art-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

body {
    margin: 0;
    padding: 0;
    background-image: url('images/logo.png');
    background-size: cover;        /* Or "contain" if you prefer */
    background-repeat: no-repeat;
    background-position: center center;   /* ← Centers horizontally & vertically */
}














/* ---------- ART PAGE STYLES ---------- */
.art-page {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: #4d86ff; /* blue marble base color */
}

/* ---------- HEADER ---------- */
.art-page .header-section {
width: 100%;
height: 280px;
background-image: url("images/marble.jpg");
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: flex-start; /* left-align the button */
padding-left: 60px;
}

.art-page .button-header {
background: #F8E9C2;
padding: 45px 80px;
border-radius: 40px;
font-size: 3.5rem;
font-style: italic;
font-weight: 700;
color: white;
width: fit-content;
box-shadow: 0px 6px 18px rgba(0,0,0,0.18);
}

/* ---------- MAIN CONTENT ---------- */
.art-page .content {
width: 80%;
max-width: 1100px;
margin: 50px auto 100px;
}

/* Each art row */
.art-page .art-section {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
margin-bottom: 60px;
}

/* Images inside a row */
.art-page .art-images {
display: flex;
gap: 20px;
}

.art-page .art-images img {
width: 230px; /* consistent scaling */
height: auto;
border-radius: 12px;
box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

/* Text next to images */
.art-page .art-text {
width: 280px;
color: white;
font-weight: 600;
font-size: 1.1rem;
}

/* Divider between sections */
.art-page .divider {
width: 100%;
height: 6px;
background: white;
border-radius: 3px;
margin: 40px 0;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 1000px) {
.art-page .art-section {
flex-direction: column;
align-items: center;
}
.art-page .art-text {
width: 100%;
text-align: center;
}
.art-page .art-images {
justify-content: center;
}
}

