/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Chonburi&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color: white;
    background: url('assets/burst.png') no-repeat center center fixed;
    background-size: cover;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-subtitle {
    font-family: 'Chonburi', serif;
    text-transform: uppercase;
}

/* Layout */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main content */
.main {
    min-height: 100vh;
    background-image: url('assets/pattern-gold.png');
    background-color: rgba(255, 255, 255, 0.9);
    background-repeat: repeat;
    margin: 2rem auto;
    margin-top: 120px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero section */
.hero {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

.hero-logo {
    width: 100%;
    margin-top: -100px;
    margin-bottom: 2rem;
    display: block;
    z-index: 10;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-character {
    height: 200px;
    width: auto;
    opacity: 0.8;
    z-index: 1;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 1rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Content boxes with pattern background */
.content-box {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-with-character {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.content-text {
    flex: 1;
}

.content-character {
    flex-shrink: 0;
}

.section-character {
    height: 150px;
    width: auto;
    opacity: 0.9;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin: 0.5rem;
}

.btn-primary {
    background: #28a745;
    color: white;
}

.btn-primary:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #28a745;
    color: white;
    border-color: #28a745;
}



/* Mailing list form */
.mailing-form {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mailing-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #28a745;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-input:hover {
    border-color: #28a745;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.form-input::placeholder {
    color: #6c757d;
    font-style: italic;
}

.mailing-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    margin-top: 0.5rem;
}

.mailing-form .btn:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.mailing-form .btn:active {
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.mailing-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
    box-shadow: 0 4px 12px rgba(21, 87, 36, 0.1);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
    box-shadow: 0 4px 12px rgba(114, 28, 36, 0.1);
}


/* Feature list */
.feature-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.feature-list li {
    font-size: 1.15rem;
    padding: 0.5rem 0;
}

.feature-list li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-text {
    margin: 0;
}
