/* Global page style */
body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", "Times New Roman", serif;
    background: url("images/parchment.jpg") center/cover no-repeat fixed;
    color: #3b2f2f;
}

.parchment-background {
    background-image: url("images/parchment.jpg");
    background-size: cover;
    background-repeat: repeat;
}



/* Header */
header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 42px;
}

.tagline {
    margin: 5px 0 0;
    font-size: 18px;
    color: #5a4633;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.2);
}

nav a {
    text-decoration: none;
    color: #3b2f2f;
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Main content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Watch card */
.watch-card {
    background: #e8dcc2;
    padding: 15px;
    border: 2px solid #c2b59b;
    text-align: center;
    border-radius: 6px;
}

.watch-card img {
    width: 100%;
    height: auto;
    border: 1px solid #b8a78a;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.watch-card img:hover {
    transform: scale(1.05);
}

/* Placeholder card */
.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0e6d2;
    border: 2px dashed #b8a78a;
}

.placeholder-box {
    padding: 20px;
}

.placeholder-note {
    font-size: 14px;
    color: #7a5f3e;
    margin-top: 5px;
}

/* Watch form (List Your Watch page) */
.watch-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    background: #e8dcc2;
    padding: 20px;
    border: 2px solid #c2b59b;
    border-radius: 6px;
}

.watch-form input,
.watch-form textarea {
    padding: 10px;
    border: 1px solid #b8a78a;
    border-radius: 4px;
    font-size: 16px;
}

.watch-form button {
    padding: 10px;
    background: #c2b59b;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.watch-form button:hover {
    background: #a8977a;
}


