/* Global Structural Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Global Typography Elements */
h2, h4 {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Header Navigation Bar Layout */
.main-header {
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.header-title a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Hina Mincho', serif;
}

nav {
    display: flex;
    gap: 10px;
}

nav a {
    text-decoration: none;
    color: rgb(0, 153, 255);
    padding: 10px 20px;
    font-size: 18px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: burlywood;
    color: black;
    border-radius: 5px;
}

/* Showcase Headers Style */
.hero-showcase {
    text-align: center;
    margin-top: 30px;
}

.subheader {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 16px;
    margin-top: 5px;
}

/* Top Media Showcase Gallery Row */
.items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.portrait {
    display: block;
    max-width: 100%;
    height: auto;
    border: 5px solid rgb(0, 153, 255);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.5);
    transition: transform 0.3s ease;
}

.portrait:hover {
    transform: scale(1.05);
}

/* Products Table Styling */
.table-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

table {
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

table, tr, th, td {
    border: 2px solid #333;
    color: rgb(47, 148, 34);
    padding: 12px;
}

th {
    background-color: #eee;
    color: #333;
}

table td a {
    color: rgb(47, 148, 34);
    font-weight: bold;
}

/* Pricing Section Column Grid */
.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Individual Column Styling */
.tab {
    background-color: white;
    border: 2px solid #333;
    border-radius: 12px;
    width: 300px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tab:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 153, 255, 0.3);
    border-color: rgb(0, 153, 255);
}

.tab-header .name {
    font-size: 22px;
    color: #222;
    margin-bottom: 5px;
}

.tab-header .price {
    font-size: 20px;
    color: rgb(0, 153, 255);
    text-shadow: none;
    text-align: center;
}

.tab hr {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

.list {
    list-style: none;
    text-align: left;
}

.list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.list li del {
    color: #bbb;
}

/* About Us Layout Blocks */
.about-container {
    padding: 20px;
    margin-top: 40px;
}

.about {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-title {
    color: #333 !important;
    text-shadow: none !important;
    margin-bottom: 10px;
}

.about-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.about-us-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}

/* Footer Grid Segments */
footer {
    background: linear-gradient(135deg, rgb(252, 232, 204), rgb(197, 141, 137));
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-gimmick {
    max-width: 600px;
    margin: 0 auto;
}

.gibran {
    background-color: lightblue;
    color: #333;
    text-shadow: none;
    padding: 10px;
    margin-bottom: 10px;
}

.jawa {
    background-color: lightblue;
    color: #333;
    text-shadow: none;
    margin: 20px auto;
    border: 5px solid red;
    padding: 15px;
    width: fit-content;
}

.author-tag {
    text-align: center;
    padding: 10px;
    color: steelblue;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    margin-bottom: 25px;
}

.main-footer { 
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.left-footer, .right-footer {
    flex: 1;
    min-width: 200px;
}

.info-left {
    color: rgb(219, 84, 75);
    text-align: left;
    background: transparent;
}

.info-right {
    color: rgb(219, 84, 75);
    text-align: right;
    background: transparent;
}

.info-center {
    color: #444;
    text-align: center;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    font-size: 14px;
}

/* Fluid Mobile Layout Rules */
@media (max-width: 900px) {
    * {
        font-size: 2.5vw;
      }
    .main-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .main-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-left, .info-right {
        text-align: center;
    }
}
/* Styling links to appear as call-to-action buttons */
.btn-order {
    display: inline-block;
    background-color: rgb(0, 153, 255);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.btn-order:hover {
    background-color: #007acc;
    transform: scale(1.02);
}
