/* Import the vintage Art Deco font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');

/* Basic setup for the whole site */
body {
    background-color: #333436; /* Dark vintage gray */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* =========================================
   HOME PAGE (LANDING SCREEN) STYLES
   ========================================= */
.home-container {
    height: 100vh; /* Takes up the full height of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
}

.vintage-button {
    text-decoration: none;
    color: #eaeaea;
    font-family: 'Limelight', cursive;
    font-size: 3rem;
    letter-spacing: 5px;
    padding: 20px 50px;
    
    /* Creating the vintage double border */
    border: 2px solid #eaeaea;
    outline: 1px solid #eaeaea;
    outline-offset: 6px;
    
    /* Smooth color transition when hovering */
    transition: all 0.3s ease;
}

.vintage-button:hover {
    background-color: #eaeaea;
    color: #333436;
}

/* =========================================
   NAVIGATION STYLES
   ========================================= */
.top-nav {
    position: fixed; /* This locks the button in place while scrolling */
    top: 25px;       /* Distance from the top of the screen */
    left: 25px;      /* Distance from the left edge */
    z-index: 1000;   /* Ensures the button stays on top of the scrolling images */
}

.home-button {
    font-family: 'Limelight', cursive;
    color: #eaeaea;
    background-color: #333436; /* Adds a solid background so art doesn't show through the text */
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 4px;
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.home-button:hover {
    background-color: #eaeaea;
    color: #333436;
}

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */
.gallery-header {
    text-align: center;
    color: #eaeaea;
    font-family: 'Limelight', cursive;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* Slightly increased gap to account for larger images */
    padding: 20px;
    max-width: 1200px; /* Widened the container so images can be bigger */
    margin: 0 auto 100px auto; 
}

.artwork-item {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-image {
    width: 100%;
    max-width: 900px; /* Increased from 600px so the art is the main focus */
    height: auto;
    border: 2px solid #eaeaea;
    margin-bottom: 15px;
}

/* Holds title and stats in one horizontal line */
.artwork-details {
    color: #eaeaea;
    width: 100%;
    max-width: 900px; /* Matches the new image width */
    display: flex;
    justify-content: center;
    align-items: baseline; /* Perfectly aligns the bottoms of the different fonts */
    flex-wrap: wrap; /* Allows it to wrap neatly on mobile phones */
    gap: 20px; /* Space between each item */
}

/* Smaller, inline title */
.art-title {
    font-family: 'Limelight', cursive;
    font-size: 1.3rem; /* Scaled down */
    letter-spacing: 2px;
    margin-right: 10px; /* Gives the title slightly more breathing room */
}

/* Smaller stats text */
.art-stat {
    font-family: Arial, sans-serif;
    font-size: 0.9rem; /* Scaled down */
    letter-spacing: 1px;
}