/* Reset default styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Mono", monospace;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    padding: 20px 0;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

.title {
    text-align: center;
}

.logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    transition: max-width 0.3s ease;
}

.title h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2b2b2b;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: font-size 0.3s ease;
}

.title h2 {
    font-family: "Roboto Mono", monospace;
    font-size: 1.2rem;
    font-weight: 300;
    color: #555;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    text-decoration: none;
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    color: #2b2b2b;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #b8860b;
}

/* Shrink header on subpages */
body:not(.home) header {
    padding: 10px 0;
}

body:not(.home) .logo {
    max-width: 80px;
}

body:not(.home) .title h1 {
    font-size: 2rem;
}

body:not(.home) .title h2 {
    opacity: 0;
    height: 0;
    margin: 0;
}

/* Main Content */
main {
    padding: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Work Section */
.work {
    padding: 120px 10% 60px;
    background-color: #fff;
}

.work h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2b2b2b;
    text-align: center;
}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


.gallery img {
    height: 300px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.gallery-item {
  position: relative;
}

.footer {
  text-align: center;
  padding: 10px;
  font-size: 0.6rem;
  color:#232329;
  /* Add any additional styling for the footer */
}

.footer-left {
  float: left;
}

.footer-right {
  float: right;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 42, 42, 0.8);
    color: #fff;
    border: none;
    padding: 5px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.gallery-nav:hover {
    background: #b8860b;
}

.gallery-nav.prev {
    left: 0px;
}

.gallery-nav.next {
    right: 0px;
}

/* About Section */
.about {
    padding: 120px 10% 60px;
    background-color: #fff;
}

.about h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2b2b2b;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 120px 10% 60px;
    background-color: #f5f5f5;
}

.contact h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2b2b2b;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2b2b2b;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    background-color: #fff;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #2b2b2b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

form button:hover {
    background-color: #b8860b;
}

/* Footer */
footer {
    padding: 15px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.6rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}


/* Responsive Design */
@media only screen and (max-width: 768px) {
    .title h1 {
        font-size: 2.5rem;
    }

    .title h2 {
        font-size: 1rem;
    }

    .logo {
        max-width: 120px;
    }

    body:not(.home) .logo {
        max-width: 60px;
    }

    body:not(.home) .title h1 {
        font-size: 1.5rem;
    }

    nav ul li {
        margin: 0 15px;
    }

    .work, .about, .contact {
        padding: 100px 5% 50px;
    }

    .work h3, .about h3, .contact h3 {
        font-size: 2rem;
    }

    .gallery img {
        height: 250px;
    }

    .gallery-nav {
        font-size: 1.2rem;
        padding: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .title h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 80px;
    }

    body:not(.home) .logo {
        max-width: 50px;
    }

    body:not(.home) .title h1 {
        font-size: 1.2rem;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .about p {
        font-size: 1rem;
    }

    .gallery img {
        height: 200px;
    }

    .gallery-nav {
        font-size: 1rem;
        padding: 6px;
    }
}

