/* styles.css */
@font-face {
    font-family: 'Autograf';
    src: url('Autograf.ttf') format('truetype');
}
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #ddd;
    background-color: #1a1a1a;
}
.hero {
    background: url('imgs/hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
   width: 600px;
    height: 300px;
    padding-top: 60px;
   
}
.hero h1 {
    font-family: 'Autograf', cursive;
    font-size: 8rem;
    margin: 0;
    color: #c0a472;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #c0a472;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
}
.btn:hover {
    background: #a07e4e;
    color: white;
}
.products {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}
.product {
    text-align: center;
    max-width: 320px;
}
.product-carousel {
    width: 100%;
    max-width: 300px;
    margin: 40px;
}
.product img {
    width: 100%;
    border-radius: 10px;
}
.craftsmanship, .signup {
    text-align: center;
    padding: 50px;
}


/* Craftsmanship Section */
.craftsmanship {
    padding: 60px;
    background: #222;
    color: #ddd;
    text-align: center;
}
.craftsmanship h2 {
    font-size: 2.5rem;
    color: #c0a472;
    margin-bottom: 20px;
}
.craftsmanship-content {
    max-width: 800px;
    margin: auto;
    text-align: left;
}
.craftsmanship h3 {
    font-size: 1.8rem;
    color: #c0a472;
    margin-top: 30px;
}
.craftsmanship ul {
    list-style: none;
    padding: 0;
}
.craftsmanship ul li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signup input {
    padding: 10px;
    width: 250px;
    border: 1px solid #c0a472;
    border-radius: 5px;
    background-color: #222;
    color: #ddd;
}
.signup button {
    padding: 12px 24px;
    background: #c0a472;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}
.signup button:hover {
    background: #a07e4e;
}
.collection {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.collection h2 {
    font-size: 2rem;
    color: #c0a472;
}
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #c0a472;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}
.popup-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    background: transparent;
}
.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px 10px;
    cursor: pointer;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    transition: top 0.3s;
}
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.navbar ul li {
    display: inline;
}
.navbar ul li a {
    color: #c0a472;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}
.navbar ul li a:hover {
    color: white;
}
.hidden-nav {
    top: -60px;
}

.popup-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    color: #c0a472;
    font-size: 3rem;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10000;
flex-direction: column;
}
