/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
}

/* Utilities */


/* Forms & Buttons */

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    font-size: 0.875rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: white;
    box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

/* Form Row - for side-by-side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #4a4a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #cccccc;
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Full width button modifier */
.btn-full {
    width: 100%;
}

/* Button group container */
.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}



@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-name {
    font-family: 'Cookie', cursive;
    font-size: 2.5rem;
    color: #1a1a1a;
    white-space: nowrap;
}

.logo-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.1em;
    
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 16rem;
    height: 100vh;
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y:auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-admin-link {
    font-weight: 400
}



.mobile-nav-link:hover {
    color: #cccccc;
}

/* Generic Section Styles */
.section {
    padding: 4rem 1rem;
}

.section-with-nav {
    padding: 8rem 1rem 4rem;
}

.section-alt-bg {
    background-color: #fafafa;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* Generic Grid Layouts */
.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Generic Content Blocks */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.content-divider {
    border: none;
    border-top: 1px solid #cccccc;
}

/* Generic Image Containers */
.image-wrapper {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.image-wrapper-landscape {
    aspect-ratio: 4 / 3;
}

.image-wrapper-portrait {
    aspect-ratio: 3 / 4;
}

.image-wrapper-square {
    aspect-ratio: 1 / 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #f5f5f5;
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slideshow-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slideshow-prev {
    left: 1rem;
}

.slideshow-next {
    right: 1rem;
}

.slideshow-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Collection/Gallery Grid Items */
.collection-item {
    cursor: pointer;
}

.collection-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #e5e5e5;
    overflow: hidden;
    margin-bottom: 1rem;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
}

.collection-item:hover .collection-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.collection-title {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.collection-item:hover .collection-title {
    color: #666666;
}

/* Info Blocks */
.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #4a4a4a;
    font-weight: 300;
}

.info-label {
    font-weight: 400;
}

/* Centered Content */
.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Lists */
.styled-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.styled-list li {
    line-height: 1.8;
}

.styled-list a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.styled-list a:hover {
    color: #666666;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-name {
    font-family: 'Cookie', cursive;
    font-size: 2rem;
    color: #ffffff;
}

.footer-logo-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: #999999;
    letter-spacing: 0.1em;
}

.footer-description {
    font-size: 0.875rem;
    color: #999999;
    font-weight: 300;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #999999;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #666666;
    font-weight: 300;
}

/* Responsive Design */
@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-with-nav {
        padding: 8rem 1.5rem 4rem;
    }

    .footer {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 4rem 2rem;
    }

    .section-with-nav {
        padding: 8rem 2rem 4rem;
    }

    .footer {
        padding: 3rem 2rem;
    }
}

/* Grid Item Order Control */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
    .order-desktop-1 { order: 1; }
    .order-desktop-2 { order: 2; }
}

/* Login Form Styles */
.login-container {
    background: white;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in;
    border: 1px solid #e5e5e5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: #1a1a1a;
    padding: 40px 30px;
    text-align: center;
    color: white;
    border-bottom: 1px solid #333333;
}

.login-header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.login-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #999999;
    letter-spacing: 0.05em;
}

.login-form {
    padding: 40px 30px;
}

.login-footer {
    text-align: center;
    padding: 20px 30px 30px;
    color: #666666;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Alert Messages */
.alert-message {
    margin-bottom: 25px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-message.warning {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.alert-message.error {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.alert-message.success {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.alert-message.info {
    background-color: #d1ecf1;
    border: 2px solid #17a2b8;
    color: #0c5460;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-text {
    line-height: 1.5;
}

/* Login Form Responsive */
@media (max-width: 480px) {
    .login-container {
        border-radius: 2px;
    }

    .login-header {
        padding: 30px 20px;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }

    .login-form {
        padding: 30px 20px;
    }
}

/* Admin Dashboard Header (reusable across admin pages) */
.dashboard-header-wrapper {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.dashboard-subtitle {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.dash-buttons {
    display:none;
}

@media (max-width: 768px) {
    .dashboard-header-wrapper {
        padding: 1.5rem;
        text-align: center;
        justify-content: center;
    }

    .dashboard-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    
    .dash-buttons {
        display:flex;
    }
    
}
