/* Green Pottery Studio Design - Matching Screenshot */

:root {
    --green-primary: #2d5733;
    --green-dark: #1a3d20;
    --green-accent: #4a7c59;
    --cream-bg: #f8f6f0;
    --text-dark: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header and Navigation */
.main-header {
    background-color: var(--green-primary);
    padding: 10px 0;
    position: relative;
}

.navbar {
    background-color: var(--green-primary) !important;
    padding: 0;
    position: relative;
    width: 100%;
}

.navbar-container {
    padding: 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Login section in top right */
.login-section {
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 10;
}

.login-btn {
    background: none;
    border: none;
    color: #e91e63;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    opacity: 0.8;
}

.login-btn i {
    background: #e91e63;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Main header layout - centered */
.header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0 20px;
    text-align: center;
    width: 100%;
}

/* Logo section - Essex Pottery Studio - centered */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.logo-circle {
    width: 240px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 16px;
    color: white;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

/* Navigation buttons - centered at top */
.nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.nav-btn {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

.nav-btn:hover {
    background-color: white;
    color: var(--green-primary);
    text-decoration: none;
}

/* Hero Section */
.hero-background {
    background-image: url('../img/606b30_a142828d4ef7426f902aba9fda3c3dfa~mv2.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
}

.welcome-card {
    background: white;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.welcome-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.welcome-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Studio Info Section */
.studio-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.studio-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.studio-info {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    background-color: var(--green-primary);
    padding: 80px 0;
}

.team-title {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    display: flex;
    background: var(--green-dark);
    border-radius: 8px;
    overflow: hidden;
    min-height: 180px;
}

.member-photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.member-info {
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.member-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.member-description {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--green-primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-hours {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-address {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-btn {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background-color: white;
    color: var(--green-primary);
}

.footer-bottom {
    font-size: 12px;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .welcome-card {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .team-member {
        flex-direction: column;
    }
    
    .member-photo {
        width: 100%;
        height: 200px;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Hide default Bootstrap navbar elements */
.navbar-nav,
.navbar-toggler {
    display: none !important;
}