/*
Theme Name: Vinz Ideas Modern Travel Blog
Theme URI: https://vinzideas.com
Description: A modern, professional Bootstrap 5-based theme designed for travel blogs with responsive design and optimized performance.
Version: 1.0.0
Author: Claude Haiku 4.5
Author URI: https://anthropic.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vinzideas
Domain Path: /languages
Tags: travel, blog, responsive, bootstrap, modern
*/

:root {
  --primary-red: #E31D23;
  --dark-black: #000000;
  --clean-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #666666;
  --sky-blue: #0099FF;
  --accent-orange: #FF6B3D;
  --text-dark: #222222;
  --text-light: #777777;
  --border-light: #EEEEEE;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--clean-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* Buttons */
.btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--clean-white);
}

.btn-primary:hover {
  background-color: #C71319;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 29, 35, 0.3);
}

.btn-secondary {
  background-color: var(--dark-black);
  color: var(--clean-white);
}

.btn-secondary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-red);
  color: var(--clean-white);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Cards */
.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-image {
  height: 300px;
  overflow: hidden;
  background-color: var(--light-gray);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
  min-width: 0;
}

.col-12 { flex: 0 0 100%; }
.col-11 { flex: 0 0 91.66%; }
.col-10 { flex: 0 0 83.33%; }
.col-9 { flex: 0 0 75%; }
.col-8 { flex: 0 0 66.66%; }
.col-7 { flex: 0 0 58.33%; }
.col-6 { flex: 0 0 50%; }
.col-5 { flex: 0 0 41.66%; }
.col-4 { flex: 0 0 33.33%; }
.col-3 { flex: 0 0 25%; }
.col-2 { flex: 0 0 16.66%; }
.col-1 { flex: 0 0 8.33%; }

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  .col-lg-4 { flex: 0 0 50%; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  .col-md-6 { flex: 0 0 50%; }
  .col-md-12 { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .col-sm-12 { flex: 0 0 100%; }
  .container { padding: 0 15px; }
}
